| 27 | |
| 28 | |
| 29 | class CarBase(MongoBaseModel): |
| 30 | |
| 31 | brand: str = Field(..., min_length=2) |
| 32 | make: str = Field(..., min_length=1) |
| 33 | year: int = Field(..., gt=1975, lt=2023) |
| 34 | price: int = Field(...) |
| 35 | km: int = Field(...) |
| 36 | cm3: int = Field(..., gt=400, lt=8000) |
no outgoing calls
no test coverage detected