Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 9 additions & 1 deletion channel_advisor_api/models/channel_advisor.py
Original file line number Diff line number Diff line change
Expand Up @@ -252,7 +252,15 @@ class MinProduct(BaseProduct):
"5) Maintain brand/model name consistency with title",
)
short_description: Optional[str] = Field(
None, alias="ShortDescription", description="Short description for SEO. Max length 300 characters."
None,
alias="ShortDescription",
description="Short text only description for SEO."
"1) Remove ™, © and ® symbols, "
"2) Do not use any html markup, "
"3) Do not use any urls, "
"4) Maintain brand/model name consistency with title"
"5) Keep length under 150 characters",
max_length=300, # Leaving this at 300 to be safe so that importing existing products doesnt break
)
asin: Optional[str] = Field(
None,
Expand Down