This function converts a typed value - such as an object or a list - into a JSON string. It’s the inverse of the Parse function.
You can read more about JSON at Wikipedia’s JSON article. It is a standard format used by web developers to send data to and from RESTful web services.
Input Fields
- object: the value to stringify. It can be any JSON type, i.e. it can be a list of objects, or a list of text, or just a number… just make sure to set the type correctly
Output Fields
- output: a string containing the stringified JSON value