# Categorize Navigator Source Documents

> Perform Categorize Navigator Source Documents through GenHealth.

Source: [https://genhealth.ai/docs/workflows/integrations/gen-health/categorize_navigator_source_documents](https://genhealth.ai/docs/workflows/integrations/gen-health/categorize_navigator_source_documents)

Integration: [GenHealth](https://genhealth.ai/docs/workflows/integrations/gen-health.md)

- Handler: `categorize_navigator_source_documents`

## Inputs

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

## Outputs

- `success` — Success
- `cached` — Cached
- `document_groups` — Document Groups
- `dynasplint_illegible_order_pages` — Dynasplint Illegible Order Pages
- `dynasplint_unreadable_pages` — Dynasplint Unreadable Pages
- `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",
    "metadata"
  ],
  "properties": {
    "metadata": {
      "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": {
    "error": {},
    "cached": {},
    "success": {},
    "document_groups": {},
    "dynasplint_unreadable_pages": {},
    "dynasplint_illegible_order_pages": {}
  },
  "additionalProperties": true
}
```
