Skip to content

Commit 28c9f21

Browse files
authored
Merge pull request #4 from cloudshiftstrategies/fx/shortDescription
fix(shortDescr): changed prompting for short description
2 parents e9d8dc1 + 3bbaf25 commit 28c9f21

File tree

1 file changed

+9
-1
lines changed

1 file changed

+9
-1
lines changed

channel_advisor_api/models/channel_advisor.py

Lines changed: 9 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -252,7 +252,15 @@ class MinProduct(BaseProduct):
252252
"5) Maintain brand/model name consistency with title",
253253
)
254254
short_description: Optional[str] = Field(
255-
None, alias="ShortDescription", description="Short description for SEO. Max length 300 characters."
255+
None,
256+
alias="ShortDescription",
257+
description="Short text only description for SEO."
258+
"1) Remove ™, © and ® symbols, "
259+
"2) Do not use any html markup, "
260+
"3) Do not use any urls, "
261+
"4) Maintain brand/model name consistency with title"
262+
"5) Keep length under 150 characters",
263+
max_length=300, # Leaving this at 300 to be safe so that importing existing products doesnt break
256264
)
257265
asin: Optional[str] = Field(
258266
None,

0 commit comments

Comments
 (0)