Skip to documentation
GenHealth integration

Reconcile DOS Encounter Status

Perform Reconcile DOS Encounter Status through GenHealth.

View as Markdown
reconcile_dos_encounter_status
write

Inputs

  • visit_date
    daterequired
    Visit Date

    Required date in YYYY-MM-DD format.

  • encounters
    jsonrequired
    Encounters

    Required JSON value.

  • terminal_statuses
    text
    Terminal Statuses

    Optional text value.

    Default: "released,_REFERRAL,_E Pending"

Outputs

  • successSuccess
  • visit_dateVisit Date
  • total_countTotal Count
  • terminal_countTerminal Count
  • gap_countGap Count
  • gap_summaryGap Summary
  • errorError

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
{
  "type": "object",
  "required": [
    "visit_date",
    "encounters"
  ],
  "properties": {
    "encounters": {
      "description": "Required JSON value.",
      "x-workflow-field-type": "json"
    },
    "visit_date": {
      "type": "string",
      "format": "date",
      "description": "Required date in YYYY-MM-DD format.",
      "x-workflow-field-type": "date"
    },
    "terminal_statuses": {
      "type": "string",
      "default": "released,_REFERRAL,_E Pending",
      "description": "Optional text value.",
      "x-workflow-field-type": "text"
    }
  },
  "additionalProperties": false
}
Output schema
{
  "type": "object",
  "properties": {
    "error": {},
    "success": {},
    "gap_count": {},
    "visit_date": {},
    "gap_summary": {},
    "total_count": {},
    "terminal_count": {}
  },
  "additionalProperties": true
}
View all GenHealth actions