json_validate
Parse a string as JSON to confirm it is well-formed and return a normalized representation when possible before further processing or storage.
Use when:
Is this string valid JSON?
Parse and normalize a JSON payload before processing
Check whether agent or user-supplied text is well-formed JSON
Do not use when:
Validate against a specific JSON Schema or OpenAPI model beyond well-formedness
Encode or decode Base64 (use base64_encode / base64_decode)
Validate UUID or ISBN identifier formats
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| value | Yes |