# JSONDeserialize

Converts a JSON (JavaScript Object Notation) string data representation into data, such as a structure or array.

## Method Signature

```
JSONDeserialize(json=[string], strictMapping=[boolean], useCustomSerializer=[string])
```

### Arguments

| Argument              | Type      | Required | Description                                                                                                  | Default |
| --------------------- | --------- | -------- | ------------------------------------------------------------------------------------------------------------ | ------- |
| `json`                | `string`  | `true`   | The JSON string to convert to data.                                                                          |         |
| `strictMapping`       | `boolean` | `false`  | A Boolean value that specifies whether to convert the JSON strictly. If true, everything becomes structures. | `true`  |
| `useCustomSerializer` | `string`  | `false`  | A string that specifies the name of a custom serializer to use. (Not used)                                   |         |

## Examples

## Related


---

# Agent Instructions: Querying This Documentation

If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter:

```
GET https://boxlang.ortusbooks.com/boxlang-framework/modularity/compat-cfml/reference/built-in-functions/conversion/jsondeserialize.md?ask=<question>
```

The question should be specific, self-contained, and written in natural language.
The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
