The updated JSON schema configuration for citation extraction. This completely replaces the existing schema configuration.The schema object can contain:
variables: Array of variable definitions for data extraction
groupings: Array of related variable collections
conditions: Array of conditional logic rules
Example structure:
Copy
Ask AI
{ "variables": [ { "name": "Customer Name", "description": "The full name of the customer", "type": "string" }, { "name": "Lead Score", "description": "Numeric score indicating lead quality (1-10)", "type": "number" } ], "groupings": [ { "name": "Lead Information", "variables": ["Customer Name", "Lead Score"] } ], "conditions": []}
At least one field (name, description, or schema) must be provided in the request body.