codeant-ai-for-open-source[bot] commented on PR #38848:
URL: https://github.com/apache/superset/pull/38848#issuecomment-4127279964

   ## **Sequence Diagram**
   
   This PR changes chart config validation so unknown fields are no longer 
silently ignored. Requests now either accept supported alias names or fail fast 
with a suggested correct field name to help users and agents self-correct.
   
   ```mermaid
   sequenceDiagram
       participant Client
       participant MCP Service
       participant Chart Validator
   
       Client->>MCP Service: Submit generate chart config
       MCP Service->>Chart Validator: Validate fields with aliases
   
       alt Known field or supported alias
           Chart Validator-->>MCP Service: Return normalized config
           MCP Service-->>Client: Continue chart generation
       else Unknown field
           Chart Validator-->>MCP Service: Return error with suggested field
           MCP Service-->>Client: Return actionable validation error
       end
   ```
   
   ---
   *Generated by [CodeAnt AI](https://codeant.ai)*
   


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: [email protected]

For queries about this service, please contact Infrastructure at:
[email protected]


---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]

Reply via email to