Array Map Fields
Transforms selected object fields using deterministic operations such as trim, lowercase, uppercase, number, and date normalization.
Run tool
Form input
Direct JSON or Markdown
Submit JSON directly or Markdown that can be converted into JSON.
Work steps
Inputs
| Name | Type | Required | Description |
|---|---|---|---|
items | array | Yes | Items |
mappings | array | Yes | Mappings |
Outputs
| Name | Type | Description |
|---|---|---|
result | array | Result |
work | array | Work |
Sample request
{
"items": [
{
"email": " A@X.COM ",
"amount": "42"
}
],
"mappings": [
{
"field": "email",
"operation": "lowercase_trim"
},
{
"field": "amount",
"operation": "number"
}
]
}