TO_JSON function

TO_JSON function

Function Name Description Usage Input parameter Return value
TO_JSON Converts the current value to a JSON object. TO_JSON() N/A A JSON object.

Supported data type

The TO_JSON function supports the following data types:

  • Boolean
  • Boolean array
  • Double
  • Double array
  • Integer
  • Integer array
  • String
  • String array

Example: Convert a string to a JSON

Sample data: $var1$ = "{product: "cake", id: 21, price: 5}"

Usage: $var1$.TO_JSON()

Convert var1 to JSON.

Output: {product: "cake", id: 21, price: 5}

Recommendation

Except as otherwise noted, the content of this page is licensed under the Creative Commons Attribution 4.0 License, and code samples are licensed under the Apache 2.0 License. For details, see the Google Developers Site Policies. Java is a registered trademark of Oracle and/or its affiliates.

Last updated 2025年12月09日 UTC.