# Generate DVS Summary Report

> Perform Generate DVS Summary Report through WhiteAid.

Source: [https://genhealth.ai/docs/workflows/integrations/white-aid/white_aid_dvs_summary_report](https://genhealth.ai/docs/workflows/integrations/white-aid/white_aid_dvs_summary_report)

Integration: [WhiteAid](https://genhealth.ai/docs/workflows/integrations/white-aid.md)

- Handler: `white_aid_dvs_summary_report`

## Inputs

- `period` — Period (select, required)
  Required selected identifier or value.
  Default: `"daily"`
  Options: Daily ("daily"), Weekly ("weekly")
- `report_date` — Report Date (text)
  Optional text value.
- `as_of` — As Of (text)
  Optional text value.
- `target_workflow_definition_id` — Target Workflow Definition Id (text)
  Optional text value.
- `brightree_base_url` — Brightree Base Url (text)
  Optional text value.
- `output_path` — Output Path (text)
  Optional text value.
- `to_emails` — To Emails (text)
  Optional text value.
  Default: `"whiteaidmedical@genhealth.ai"`
- `subject` — Subject (text)
  Optional text value.
- `include_patient_names` — Include Patient Names (boolean)
  Optional true-or-false value.
  Default: `false`

## Outputs

- `status` — Status
- `output_path` — Output Path
- `emailed_to` — Emailed To
- `period` — Period
- `window_mode` — Window Mode
- `time_range_label` — Time Range Label
- `orders_count` — Orders Count
- `success_count` — Success Count
- `human_review_count` — Human Review Count
- `unexpected_failure_count` — Unexpected Failure Count
- `skipped_count` — Skipped Count
- `invalid_count` — Invalid Count
- `retried_orders_count` — Retried Orders Count
- `resolved_after_retry_count` — Resolved After Retry Count
- `workflow_run_count` — Workflow Run Count
- `failed_workflow_run_count` — Failed Workflow Run Count
- `attachment_count` — Attachment Count

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": [
    "period"
  ],
  "properties": {
    "as_of": {
      "type": "string",
      "description": "Optional text value.",
      "x-workflow-field-type": "text"
    },
    "period": {
      "enum": [
        "daily",
        "weekly"
      ],
      "type": "string",
      "default": "daily",
      "description": "Required selected identifier or value.",
      "x-workflow-field-type": "select"
    },
    "subject": {
      "type": "string",
      "description": "Optional text value.",
      "x-workflow-field-type": "text"
    },
    "to_emails": {
      "type": "string",
      "default": "whiteaidmedical@genhealth.ai",
      "description": "Optional text value.",
      "x-workflow-field-type": "text"
    },
    "output_path": {
      "type": "string",
      "description": "Optional text value.",
      "x-workflow-field-type": "text"
    },
    "report_date": {
      "type": "string",
      "description": "Optional text value.",
      "x-workflow-field-type": "text"
    },
    "brightree_base_url": {
      "type": "string",
      "description": "Optional text value.",
      "x-workflow-field-type": "text"
    },
    "include_patient_names": {
      "type": "boolean",
      "default": false,
      "description": "Optional true-or-false value.",
      "x-workflow-field-type": "boolean"
    },
    "target_workflow_definition_id": {
      "type": "string",
      "description": "Optional text value.",
      "x-workflow-field-type": "text"
    }
  },
  "additionalProperties": false
}
```

### Output schema

```json
{
  "type": "object",
  "properties": {
    "period": {},
    "status": {},
    "emailed_to": {},
    "output_path": {},
    "window_mode": {},
    "orders_count": {},
    "invalid_count": {},
    "skipped_count": {},
    "success_count": {},
    "attachment_count": {},
    "time_range_label": {},
    "human_review_count": {},
    "workflow_run_count": {},
    "retried_orders_count": {},
    "unexpected_failure_count": {},
    "failed_workflow_run_count": {},
    "resolved_after_retry_count": {}
  },
  "additionalProperties": true
}
```
