File tree Expand file tree Collapse file tree 1 file changed +9
-1
lines changed
channel_advisor_api/models Expand file tree Collapse file tree 1 file changed +9
-1
lines changed Original file line number Diff line number Diff 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 ,
You can’t perform that action at this time.
0 commit comments