Convert JSON to Text
Command description
Converts a JSON-serializable object to text.
Command Input Parameters
| input parameters | Input parameter type | Description |
|---|---|---|
| JSON Object | any | JSON-serializable object to convert |
Command Output Parameters
| Output parameters | Output parameter type | Description |
|---|---|---|
| Text | str | Serialized JSON text |
Note
This command uses json.dumps(..., ensure_ascii=False). Dictionaries, lists, numbers, Boolean values, and None are supported. A plain string is serialized as a quoted JSON string.
AI Workflow Generation Notes
- Serialize the object as text. To access its JSON fields later, convert the text back to a JSON object.