From fd41266a1e44a2040082c57dd94a6db6e3a9570e Mon Sep 17 00:00:00 2001 From: Hasan Turken Date: Mon, 28 Aug 2023 20:47:37 +0300 Subject: [PATCH] Add support for FromJson convert transform (#539) --- content/master/concepts/patch-and-transform.md | 1 + 1 file changed, 1 insertion(+) diff --git a/content/master/concepts/patch-and-transform.md b/content/master/concepts/patch-and-transform.md index 893cf289..b859a816 100644 --- a/content/master/concepts/patch-and-transform.md +++ b/content/master/concepts/patch-and-transform.md @@ -1505,6 +1505,7 @@ converts the input based on one of the following conversion types: * `ToBase64` - Create a new base64 string from the input. * `FromBase64` - Create a new text string from a base64 input. * `ToJson` - Convert the input string to valid JSON. +* `FromJson` - Convert the input JSON string to an object. * `ToSha1` - Create a SHA-1 hash of the input string. * `ToSha256` - Create a SHA-256 hash of the input string. * `ToSha512` - Create a SHA-512 hash of the input string.