Skip to content

Commit

Permalink
none
Browse files Browse the repository at this point in the history
  • Loading branch information
marshHawk4 committed Aug 19, 2024
1 parent c08836e commit f000ba8
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions cdr_schemas/cdr_responses/features.py
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ class PolygonExtractionResponse(BaseModel):
default="", description="System version that published this item"
)
validated: Optional[bool] = Field(default=None, description="Validated by human")
legend_id: Optional[str] = Field(default="", description="Associated CDR legend id")
legend_id: Optional[str] = Field(default=None, description="Associated CDR legend id")
projected_feature: List[ProjectedFeature] = Field(
default_factory=list,
description="""
Expand Down Expand Up @@ -82,7 +82,7 @@ class PointExtractionResponse(BaseModel):
default="", description="System Version that published this item"
)
validated: Optional[bool] = Field(default=None, description="Validated by human")
legend_id: Optional[str] = Field(default="", description="Associated legend id")
legend_id: Optional[str] = Field(default=None, description="Associated legend id")
projected_feature: List[ProjectedFeature] = Field(
default_factory=list,
description="""
Expand Down Expand Up @@ -118,7 +118,7 @@ class LineExtractionResponse(BaseModel):
default="", description="System version that published this item"
)
validated: Optional[bool] = Field(default=None, description="Validated by human")
legend_id: Optional[str] = Field(default="", description="Associated legend id")
legend_id: Optional[str] = Field(default=None, description="Associated legend id")
projected_feature: List[ProjectedFeature] = Field(
default_factory=list,
description="""
Expand Down

0 comments on commit f000ba8

Please sign in to comment.