Determines whether a given text conforms to a valid JSON format. Ensuring valid JSON formatting is critical for seamless data interoperability, as incorrect structures can lead to parsing errors and system failures.
text
column is valid JSON format.text
column is not valid JSON (e.g., syntax errors, missing brackets, improper structure).Click here to learn how to setup evaluation using the Python SDK.
Input Type | Parameter | Type | Description |
---|---|---|---|
Required Inputs | text | string | The input content to be evaluated. |
Output | Type | Description |
---|---|---|
Result | bool | Returns 1.0 if the content is valid JSON (Pass), 0.0 otherwise (Fail). |