Merge · Schema

HTTPValidationError

Standard FastAPI validation error wrapper. Returned with HTTP 422 when the request body or query parameters fail Pydantic validation.

IntegrationPlatformUnified-APIAgent HandlerLLM Gateway

Properties

Name Type Description
detail array
View JSON Schema on GitHub

JSON Schema

merge-httpvalidationerror-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/HTTPValidationError",
  "title": "HTTPValidationError",
  "type": "object",
  "properties": {
    "detail": {
      "type": "array",
      "items": {
        "$ref": "#/components/schemas/ValidationError"
      }
    }
  },
  "description": "Standard FastAPI validation error wrapper. Returned with HTTP 422 when the request body or query parameters fail Pydantic validation."
}