winops_json_validate
Validate a JSON string and return its validity status, success indicator, and error message if invalid.
Instructions
Validate whether a string is valid JSON.
Return Format
{"success": true, "valid": bool, "error": str | null}Examples
validate(text='{"key": "value"}')Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| text | Yes | JSON string to validate. |
Output Schema
| Name | Required | Description | Default |
|---|---|---|---|
No arguments | |||