Fields
Sample data
This transformer does not change the items that pass; it only removes the ones that fail the schema. The values you set decide what counts as valid. For example, with a custom schema that requires asku (text) and a price (number):
| Field | Value |
|---|---|
| Schema to use | Use custom schema |
| Schema | requires sku (string) and price (number) |
| Pattern | empty (whole item) |
| Item | Result |
|---|---|
{ "sku": "A1", "price": 19.99 } | Passes (matches the schema) |
{ "sku": "A1" } | Dropped (price is missing) |
{ "sku": "A1", "price": "free" } | Dropped (price is not a number) |