Fields
Accessor
A required field. Describes how the find the data that needs to be removed from the context. There are few standard accessors that can be used to find the data. Each of them uses a different method.Sample data
| Accesor | Input | Output |
|---|---|---|
| Pattern: product.price | {“product”: {“name”: “example”, “price”: 10}} | {“product”: {“name”: “example”}} |
| Pattern: product.* | {“product”: {“name”: “example”, “price”: 10}} | {“product”: {}} |