-
Notifications
You must be signed in to change notification settings - Fork 75
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Scrubber for JSON paths #598
Comments
Here's one possible implementation.
Note that this does only work for JSON paths that return a single value. I can probably find a solution that would also allow to scrub paths that return lists. I first tried to use JSON path's Also this implementation adds a new dependency to JSON path. |
hey Michael, we get together again next Monday, if you're interested and want to present your issue, and potentially then immediately mob program the solution with us, I can send you a calendar invite. It's 18 o'clock German time. Otherwsie, we'll also take a look at this issue without you ;) |
Sorry, we didn't get to it today, we'll check in again February 3rd. |
I want to be able to scrub specific fields in a JSON document.
E.g. when I test a POST API call and the resulting JSON contains multiple UUIDs. The top level UUID has been dynamically generated by the backend and should be scrubbed. However, another UUID is a reference that was contained in my request and hence should not be scrubbed.
I'd like support for such cases with a Scrubber implementation that allows to scrub specific JSON fields using JSON path.
The text was updated successfully, but these errors were encountered: