Skip to documentation
GenHealth - Checks integration

Check List Field Values

Perform Check List Field Values through GenHealth - Checks.

View as Markdown
check_list_field_values
read

Inputs

  • items
    expression
    Items

    Optional literal value or workflow expression.

  • required_field
    text
    Required Field

    Optional text value.

  • required_value
    text
    Required Value

    Optional text value.

  • match_mode
    text
    Match Mode

    Optional text value.

    Default: "exact"

  • skip_null
    boolean
    Skip Null

    Optional true-or-false value.

    Default: true

  • unique_field
    text
    Unique Field

    Optional text value.

Outputs

No named outputs are declared for this action.

Output schema completeness: unknown

Safety

External effect
read
Confirmation recommended
No
Retry safe
Yes
Dry run supported
No

Schemas

These schemas are first-pass authoring guidance. Runtime validation remains authoritative.

Input schema
{
  "type": "object",
  "properties": {
    "items": {
      "description": "Optional literal value or workflow expression.",
      "x-workflow-field-type": "expression"
    },
    "skip_null": {
      "type": "boolean",
      "default": true,
      "description": "Optional true-or-false value.",
      "x-workflow-field-type": "boolean"
    },
    "match_mode": {
      "type": "string",
      "default": "exact",
      "description": "Optional text value.",
      "x-workflow-field-type": "text"
    },
    "unique_field": {
      "type": "string",
      "description": "Optional text value.",
      "x-workflow-field-type": "text"
    },
    "required_field": {
      "type": "string",
      "description": "Optional text value.",
      "x-workflow-field-type": "text"
    },
    "required_value": {
      "type": "string",
      "description": "Optional text value.",
      "x-workflow-field-type": "text"
    }
  },
  "additionalProperties": false
}
Output schema
{
  "type": "object",
  "properties": {},
  "additionalProperties": true
}
View all GenHealth - Checks actions