Check List Field Values
Perform Check List Field Values through GenHealth - Checks.
check_list_field_valuesread
Inputs
- Items
itemsexpressionOptional literal value or workflow expression.
- Required Field
required_fieldtextOptional text value.
- Required Value
required_valuetextOptional text value.
- Match Mode
match_modetextOptional text value.
Default:
"exact" - Skip Null
skip_nullbooleanOptional true-or-false value.
Default:
true - Unique Field
unique_fieldtextOptional 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
}