Skip to content

Commit 2fe4a65

Browse files
committed
chore: Add website and header image fields to CleanData model
1 parent 56af9e6 commit 2fe4a65

File tree

1 file changed

+2
-0
lines changed

1 file changed

+2
-0
lines changed

steam_sales/steam_etl/validation.py

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -158,6 +158,8 @@ class Clean(BaseModel):
158158
publisher: str = Field(..., description="Publisher of the game")
159159
price: float = Field(..., description="Current price of the game")
160160
description: str = Field(..., description="Description of the game")
161+
website: Optional[HttpUrl | str] = Field(..., description="Official website of the game")
162+
header_image: HttpUrl = Field(..., description="URL to the header image of the game")
161163
year: Optional[int] = Field(None, description="Year of the game release")
162164
month: Optional[int] = Field(None, description="Month of the game release")
163165
day: Optional[int] = Field(None, description="Day of the game release")

0 commit comments

Comments
 (0)