Skip to content

be able to update other keys in json to null #249

@venkaa6

Description

@venkaa6

Sometimes we want to keep a record of that json record even if our customer requests to delete that data. So instead of removing that full record from the json document, can we update the json keys partially to null?
example:
so current json record:

{
  "customerId": 123, 
  "createdAt": "2021-05-10",
  "email": "test@test.com",
  "phone": "456-789-0299"
}

instead of fully removing the record, we would want the s3 file to look like below:

{
  "customerId": 123, 
  "createdAt": "2021-05-10",
  "email": "",
  "phone": null
}

Metadata

Metadata

Assignees

No one assigned

    Labels

    No labels
    No labels

    Type

    No type

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions