Cache Filter (Deduplicate Items)
Perform Cache Filter (Deduplicate Items) through GenHealth.
cache_filterwrite
Inputs
- Items
itemstextareaOptional text value.
- Item Key Field
item_key_fieldtextOptional text value.
- Loop Node Id
loop_node_idtextOptional text value.
- Ttl Hours
ttl_hourstextOptional text value.
Outputs
itemsItems
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",
"properties": {
"items": {
"type": "string",
"description": "Optional text value.",
"x-workflow-field-type": "textarea"
},
"ttl_hours": {
"type": "string",
"description": "Optional text value.",
"x-workflow-field-type": "text"
},
"loop_node_id": {
"type": "string",
"description": "Optional text value.",
"x-workflow-field-type": "text"
},
"item_key_field": {
"type": "string",
"description": "Optional text value.",
"x-workflow-field-type": "text"
}
},
"additionalProperties": false
}Output schema
{
"type": "object",
"properties": {
"items": {}
},
"additionalProperties": true
}