structuredData not work for long conversation any ...
# support
y
Hi, im using structuredData to etract information from de conversation. but when is a long conversation he say N/A and when is short he works fine. How i can fix this? i need conversations of 10 or 20 minuts is the extractor context or what? he work before, he is doing that now why?
v
Try simplifying your extraction schema to isolate the issue with long conversations. For example, use a basic schema like:
Copy code
json
{
  "type": "object",
  "properties": {
    "summary": { "type": "string" }
  }
}
Test with this simpler schema to see if extraction succeeds. If it works, gradually add complexity back to identify what causes failures in long calls. Reference: See "Test with simpler schema" in the [Structured Outputs documentation](https://docs.vapi.ai/assistants/structured-outputs#test-with-simpler-schema). Source: - [Structured Outputs documentation](https://docs.vapi.ai/assistants/structured-outputs)
y
i refeer structuredDATA no structured Output, is similar but is not the seems things
https://dashboard.vapi.ai/assistants/{AsistantID}1#structured-data
c
Structured outputs does the same thing, but more reliably. We recommend using structured outputs instead.