Clay Icon

Troubleshooting Unable to Parse Output Schema Error in Claygent

Β·
Β·

Hi, I'm trying to run claygent and getting the error "Unable to parse the output schema for the column". What could be the error? Here's the JSON file { "type": "array", "items": { "type": "object", "properties": { "companyName": { "type": "string", "description": "The name of the company that collaborated with Forrester." }, "url": { "type": "string", "format": "uri", "description": "The URL where the collaboration information is found." } }, "required": [ "companyName", "url" ] } }

  • Avatar of Channeled
    Channeled
    APP
    Β·
    Β·

    The "Unable to parse the output schema for the column" error typically occurs due to JSON formatting issues or incorrect syntax in your schema. To troubleshoot this: 1. Check for missing or extra commas between key-value pairs in your JSON schema. 2. Ensure all brackets and braces are properly matched. 3. Use double quotes for keys and string values. 4. Verify that your JSON schema structure aligns with Claygent's expected format for defining column outputs. 5. Review your schema for any hidden characters or extra spaces that might be causing parsing issues. To help you further, could you please copy and paste your JSON schema into the chat? This will allow me to examine it more closely and provide specific guidance.

  • Avatar of Channeled
    Channeled
    APP
    Β·
    Β·