# fastapi.exceptions.RequestValidationError: body -> item
  value is not a valid dict

- **ID:** `python/fastapi-request-body-parse-error`
- **Domain:** python
- **Category:** data_error
- **Verification:** ai_generated
- **Fix Rate:** 80%

## Root Cause

请求体中的字段类型与 Pydantic 模型不匹配。

## Version Compatibility

| Version | Status | Introduced | Deprecated |
|---------|--------|------------|------------|
| 3.x | active | — | — |

## Workarounds

1. **** (95% success)
   ```
   定义 Pydantic 模型并指定字段类型
   ```
2. **** (90% success)
   ```
   使用 List[Item] 等嵌套模型
   ```
3. **** (85% success)
   ```
   在模型中设置别名或验证器
   ```

## Dead Ends

- **** — 失去结构校验。 (60% fail)
- **** — 导致运行时错误。 (70% fail)
- **** — 失去类型安全。 (50% fail)
