Check Field Value
Perform Check Field Value through GenHealth - Checks.
check_field_valuewrite
Inputs
- Data
dataexpressionOptional literal value or workflow expression.
- Key Candidates
key_candidatesjsonOptional JSON value.
- Expected Value
expected_valuetextOptional text value.
- Case Insensitive
case_insensitivebooleanOptional true-or-false value.
Default:
true
Outputs
No named outputs are declared for this action.
Output schema completeness: unknown
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",
"properties": {
"data": {
"description": "Optional literal value or workflow expression.",
"x-workflow-field-type": "expression"
},
"expected_value": {
"type": "string",
"description": "Optional text value.",
"x-workflow-field-type": "text"
},
"key_candidates": {
"description": "Optional JSON value.",
"x-workflow-field-type": "json"
},
"case_insensitive": {
"type": "boolean",
"default": true,
"description": "Optional true-or-false value.",
"x-workflow-field-type": "boolean"
}
},
"additionalProperties": false
}Output schema
{
"type": "object",
"properties": {},
"additionalProperties": true
}