# pydantic.errors.NumberError: value is not less than or equal to 100

- **ID:** `python/pydantic-constraint-violation`
- **Domain:** python
- **Category:** data_error
- **Verification:** ai_generated
- **Fix Rate:** 80%

## Root Cause

A numeric field with Field(le=100) receives a value greater than 100, violating the constraint.

## Version Compatibility

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

## Workarounds

1. **** (90% success)
   ```
   Adjust input value to meet constraint: value = min(value, 100)
   ```
2. **** (95% success)
   ```
   Modify Field constraint: Field(le=200)
   ```

## Dead Ends

- **** — lt means strictly less than, so 100 would still fail. (50% fail)
- **** — Type mismatch with constraints may cause issues. (70% fail)
