{
  "id": "python/pydantic-constraint-violation",
  "signature": "pydantic.errors.NumberError: value is not less than or equal to 100",
  "signature_zh": "pydantic.errors.NumberError: 值不大于 100",
  "regex": "pydantic\\.errors\\.NumberError:\\ value\\ is\\ not\\ less\\ than\\ or\\ equal\\ to\\ 100",
  "domain": "python",
  "category": "data_error",
  "subcategory": null,
  "root_cause": "A numeric field with Field(le=100) receives a value greater than 100, violating the constraint.",
  "root_cause_type": "generic",
  "root_cause_zh": "带有 Field(le=100) 的数字字段接收到大于 100 的值，违反了约束。",
  "versions": [
    {
      "version": "2.x",
      "introduced": null,
      "deprecated": null,
      "removed": null,
      "behavior_change": null,
      "status": "active"
    }
  ],
  "os_specific": {},
  "dead_ends": [
    {
      "action": "",
      "why_fails": "lt means strictly less than, so 100 would still fail.",
      "fail_rate": 0.5,
      "condition": "",
      "sources": []
    },
    {
      "action": "",
      "why_fails": "Type mismatch with constraints may cause issues.",
      "fail_rate": 0.7,
      "condition": "",
      "sources": []
    }
  ],
  "workarounds": [
    {
      "action": "",
      "success_rate": 0.9,
      "how": "Adjust input value to meet constraint: value = min(value, 100)",
      "condition": "",
      "sources": []
    },
    {
      "action": "",
      "success_rate": 0.95,
      "how": "Modify Field constraint: Field(le=200)",
      "condition": "",
      "sources": []
    }
  ],
  "workarounds_zh": [],
  "transition_graph": {
    "leads_to": [],
    "preceded_by": [],
    "frequently_confused_with": []
  },
  "official_doc_url": null,
  "official_doc_section": null,
  "error_code": null,
  "verification_tier": "ai_generated",
  "confidence": 0.86,
  "fix_success_rate": 0.8,
  "resolvable": "true",
  "first_seen": "2024-02-28",
  "last_confirmed": "2025-01-01",
  "last_updated": "2025-01-01",
  "evidence_count": 0,
  "tags": [],
  "locale": "en",
  "aliases": []
}