We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 56af9e6 commit 2fe4a65Copy full SHA for 2fe4a65
steam_sales/steam_etl/validation.py
@@ -158,6 +158,8 @@ class Clean(BaseModel):
158
publisher: str = Field(..., description="Publisher of the game")
159
price: float = Field(..., description="Current price of the game")
160
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")
163
year: Optional[int] = Field(None, description="Year of the game release")
164
month: Optional[int] = Field(None, description="Month of the game release")
165
day: Optional[int] = Field(None, description="Day of the game release")
0 commit comments