Update app.py
Browse files
app.py
CHANGED
|
@@ -87,7 +87,7 @@ class Planting(BaseModel):
|
|
| 87 |
crop: List[str] = Field(..., title="Crop", description="A list of the crops in this planting")
|
| 88 |
variety: List[str] = Field(..., title="Variety", description="A list of the crop varieties in this planting")
|
| 89 |
logs: List[Log] = Field(..., title="Logs", description="A list of all the logs that are associated with the farm activities")
|
| 90 |
-
soil:
|
| 91 |
harvestYield: Yield = Field(..., title="Yield", description="Quantitative and qualitative observations regarding the yield of harvest")
|
| 92 |
|
| 93 |
class FarmActivities(BaseModel):
|
|
|
|
| 87 |
crop: List[str] = Field(..., title="Crop", description="A list of the crops in this planting")
|
| 88 |
variety: List[str] = Field(..., title="Variety", description="A list of the crop varieties in this planting")
|
| 89 |
logs: List[Log] = Field(..., title="Logs", description="A list of all the logs that are associated with the farm activities")
|
| 90 |
+
soil: Soil = Field(..., title="Soil", description="Information about the soil associated with or observed during the time of this planting")
|
| 91 |
harvestYield: Yield = Field(..., title="Yield", description="Quantitative and qualitative observations regarding the yield of harvest")
|
| 92 |
|
| 93 |
class FarmActivities(BaseModel):
|