Update schema_classes.py
Browse files- schema_classes.py +1 -1
schema_classes.py
CHANGED
|
@@ -96,7 +96,7 @@ class Soil(BaseModel):
|
|
| 96 |
|
| 97 |
class Yield(BaseModel):
|
| 98 |
quantity: str = Field(..., title="Quantity", description="A description of the total yield (harvested amount) from this planting, including units when available")
|
| 99 |
-
quality: str = Field(..., title="Quality", description="The product quality of the harvest. For example, small or large fruits, sweet or tart flavor, easily molding or containing mold, high number of product seconds, etc.")
|
| 100 |
|
| 101 |
# It breaks if soil and yield aren't lists for some reason
|
| 102 |
class Planting(BaseModel):
|
|
|
|
| 96 |
|
| 97 |
class Yield(BaseModel):
|
| 98 |
quantity: str = Field(..., title="Quantity", description="A description of the total yield (harvested amount) from this planting, including units when available")
|
| 99 |
+
quality: str = Field(..., title="Quality", description="The product quality of the harvest. For example, small or large fruits, sweet or tart flavor, easily molding or containing mold, high number of product seconds, etc.)")
|
| 100 |
|
| 101 |
# It breaks if soil and yield aren't lists for some reason
|
| 102 |
class Planting(BaseModel):
|