Skip to content

Instantly share code, notes, and snippets.

@intco
Created August 24, 2019 08:34
Show Gist options
  • Save intco/aef9066e044337aac7ac29037ff2bb54 to your computer and use it in GitHub Desktop.
Save intco/aef9066e044337aac7ac29037ff2bb54 to your computer and use it in GitHub Desktop.
{
"$schema": "http://json-schema.org/draft-07/schema#",
"title": "AE product schema",
"description": "AE product schema",
"type": "object",
"required": [
"title_multi_language_list",
"description_multi_language_list",
"locale",
"product_units_type",
"category_id",
"image_url_list",
"category_attributes",
"sku_info_list",
"inventory_deduction_strategy",
"package_weight",
"package_length",
"package_height",
"package_width",
"shipping_preparation_time",
"shipping_template_id",
"service_template_id"
],
"properties": {
"category_id": {
"title": "category id",
"type": "number",
"const": 348,
"default": 348
},
"title_multi_language_list": {
"title": "title multiple language list",
"type": "array",
"description": "<p>Product title can contain the brand name and its key attributes. For example:&nbsp;A&amp;B 100% Cotton Men's Underwear</p>\r\n<p>Stacking keywords together is proved to be less effective and will be subjected to traffic deduction based on platform rules.</p>",
"minItems": 1,
"items": {
"type": "object",
"required": [
"locale",
"title"
],
"properties": {
"locale": {
"title": "locale",
"type": "string",
"oneOf": [
{
"const": "en_US",
"title": "English"
},
{
"const": "ar_MA",
"title": "Arabic"
},
{
"const": "de_DE",
"title": "German"
},
{
"const": "es_ES",
"title": "Spanish"
},
{
"const": "fr_FR",
"title": "French"
},
{
"const": "in_ID",
"title": "Indonesian"
},
{
"const": "it_IT",
"title": "Italian"
},
{
"const": "iw_IL",
"title": "Hebrew"
},
{
"const": "ja_JP",
"title": "Japanese"
},
{
"const": "ko_KR",
"title": "Korean"
},
{
"const": "nl_NL",
"title": "Dutch"
},
{
"const": "pl_PL",
"title": "Polish"
},
{
"const": "pt_BR",
"title": "Portuguese"
},
{
"const": "ru_RU",
"title": "Russian"
},
{
"const": "th_TH",
"title": "Thai"
},
{
"const": "tr_TR",
"title": "Turkish"
},
{
"const": "vi_VN",
"title": "Vietnamese"
}
]
},
"title": {
"title": "current language title",
"type": "string",
"maxLength": 128,
"description": ""
}
}
}
},
"description_multi_language_list": {
"title": "description multiple language list",
"type": "array",
"description": "Product details are a vital part of the buyer's click-to-buy. A good detailed description can motivate buyers to generate interest, stimulate demand, win trust, and ultimately participate in buying.\r\n Product details are a vitalpart of the buyer's click-to-buy. A good detailed description can motivate buyers to generate interest, stimulate demand, win trust, and ultimately participate in buying.\r\n A good detail page generally contains the following content: <br />1. Important index parameters and functions&nbsp;<br />2. 5 or more pitcutes with details<br />3. After-sales services terms<br />Please make sure the content does violate any intellectual property rights.<a href=\"https://sell.aliexpress.com/zh/__pc/rule_detail.htm#BAN\" target=\"#\"><br /></a><a href=\"https://sell.aliexpress.com/zh/__pc/rule_detail.htm#IPR\"> Knowledge Property Rights </a>",
"minItems": 1,
"items": {
"type": "object",
"required": [
"locale",
"module_list"
],
"properties": {
"locale": {
"title": "locale",
"type": "string",
"oneOf": [
{
"const": "en_US",
"title": "English"
},
{
"const": "ar_MA",
"title": "Arabic"
},
{
"const": "de_DE",
"title": "German"
},
{
"const": "es_ES",
"title": "Spanish"
},
{
"const": "fr_FR",
"title": "French"
},
{
"const": "in_ID",
"title": "Indonesian"
},
{
"const": "it_IT",
"title": "Italian"
},
{
"const": "iw_IL",
"title": "Hebrew"
},
{
"const": "ja_JP",
"title": "Japanese"
},
{
"const": "ko_KR",
"title": "Korean"
},
{
"const": "nl_NL",
"title": "Dutch"
},
{
"const": "pl_PL",
"title": "Polish"
},
{
"const": "pt_BR",
"title": "Portuguese"
},
{
"const": "ru_RU",
"title": "Russian"
},
{
"const": "th_TH",
"title": "Thai"
},
{
"const": "tr_TR",
"title": "Turkish"
},
{
"const": "vi_VN",
"title": "Vietnamese"
}
]
},
"module_list": {
"title": "Description Module List",
"type": "array",
"minItems": 1,
"items": {
"oneOf": [
{
"type": "object",
"title": "Html content",
"required": [
"html",
"type"
],
"properties": {
"type": {
"title": "content type",
"type": "string",
"oneOf": [
{
"const": "html",
"title": "html"
}
]
},
"html": {
"title": "content",
"type": "object",
"required": [
"content"
],
"properties": {
"content": {
"type": "string",
"title": "content"
}
}
}
}
}
]
}
}
}
}
},
"locale": {
"title": "locale",
"type": "string",
"oneOf": [
{
"const": "en_US",
"title": "English"
},
{
"const": "ar_MA",
"title": "Arabic"
},
{
"const": "de_DE",
"title": "German"
},
{
"const": "es_ES",
"title": "Spanish"
},
{
"const": "fr_FR",
"title": "French"
},
{
"const": "in_ID",
"title": "Indonesian"
},
{
"const": "it_IT",
"title": "Italian"
},
{
"const": "iw_IL",
"title": "Hebrew"
},
{
"const": "ja_JP",
"title": "Japanese"
},
{
"const": "ko_KR",
"title": "Korean"
},
{
"const": "nl_NL",
"title": "Dutch"
},
{
"const": "pl_PL",
"title": "Polish"
},
{
"const": "pt_BR",
"title": "Portuguese"
},
{
"const": "ru_RU",
"title": "Russian"
},
{
"const": "th_TH",
"title": "Thai"
},
{
"const": "tr_TR",
"title": "Turkish"
},
{
"const": "vi_VN",
"title": "Vietnamese"
}
]
},
"product_units_type": {
"title": "product units type",
"type": "string",
"oneOf": [
{
"const": "100000000",
"title": "bag/bags"
},
{
"const": "100000001",
"title": "barrel/barrels"
},
{
"const": "100000002",
"title": "bushel/bushels"
},
{
"const": "100078580",
"title": "carton"
},
{
"const": "100078581",
"title": "centimeter"
},
{
"const": "101528981",
"title": "combo"
},
{
"const": "100000003",
"title": "cubic meter"
},
{
"const": "100000004",
"title": "dozen"
},
{
"const": "100078584",
"title": "feet"
},
{
"const": "100000005",
"title": "gallon"
},
{
"const": "100000006",
"title": "gram"
},
{
"const": "100078587",
"title": "inch"
},
{
"const": "100000007",
"title": "kilogram"
},
{
"const": "100078589",
"title": "kiloliter"
},
{
"const": "100000008",
"title": "kilometer"
},
{
"const": "100078559",
"title": "liter/liters"
},
{
"const": "100000009",
"title": "long ton"
},
{
"const": "100000010",
"title": "meter"
},
{
"const": "100000011",
"title": "metric ton"
},
{
"const": "100078560",
"title": "milligram"
},
{
"const": "100078596",
"title": "milliliter"
},
{
"const": "100078597",
"title": "millimeter"
},
{
"const": "100000012",
"title": "ounce"
},
{
"const": "100000014",
"title": "pack/packs"
},
{
"const": "100000013",
"title": "pair"
},
{
"const": "100000015",
"title": "piece/pieces"
},
{
"const": "100000016",
"title": "pound"
},
{
"const": "100078603",
"title": "quart"
},
{
"const": "100000017",
"title": "set/sets"
},
{
"const": "100000018",
"title": "short ton"
},
{
"const": "100078606",
"title": "square feet"
},
{
"const": "100078607",
"title": "square inch"
},
{
"const": "100000019",
"title": "square meter"
},
{
"const": "100078609",
"title": "square yard"
},
{
"const": "100000020",
"title": "ton"
},
{
"const": "100078558",
"title": "yard/yards"
}
]
},
"image_url_list": {
"title": "image url list",
"type": "array",
"items": {
"type": "string"
},
"minItems": 1,
"maxItems": 6,
"uniqueItems": true,
"description": "A picture worth a thousand words! Pictures of all angles have shown to improve conversion rate. You can upload up to six photos. Make sure to showcase the product in different colors and angles.<img src=\"//is.alicdn.com/images/cms/upload/promotion/xxq_201202/pic/p66.jpg\" alt=\"high quality-like cases show\" data-spm-anchor-id=\"5261.ae_offer_item_post_product.0.i53.6317bdf9WvH10e\" /> Note: Make sure ou have the rights to the pictures you use. All content are subjected to Intellectual Property Rights and platform punishment terms.&nbsp;<a href=\"http://seller.aliexpress.com/so/tupianguifan.php? SPM = 5261. AE _offer_item_post_product.0.0.6317bdf9WvH10e\" data-spm-anchor-id=\" 5261. AE _offer_item_post_product.0.0 \"> Pictures Specifications</a> Requirements: Less than 5MB, JPG,JPEG format; width and height proportion 1:1 (pixel greater than 800*800) . All pictures should have the same width and heightratio. <br />The body of the product should take up more than 70% of the picture. All pictures should have a consistent style. Don't recommend addong promotion label or text. Pirate photos or photos without proper usage rights are subjected to platform rules and punishments.<span style=\"color: #f60;\">&nbsp;</span><a href=\"https://sell.aliexpress.com/zh/__pc/3KLUOSWcRn.htm\" target=\"_ blank\">Product release rules.&nbsp; P</a><a href=\"https://sell.aliexpress.com/zh/__pc/announcement/2112.htm\" target=\"_ blank\">ictures rules.</a>"
},
"category_attributes": {
"title": "category attributes",
"type": "object",
"required": [
"Brand Name",
"Shirts Type",
"Material",
"Sleeve Length(cm)"
],
"properties": {
"Brand Name": {
"title": "Brand Name",
"type": "object",
"required": [
"value"
],
"properties": {
"value": {
"oneOf": [
{
"const": "203594252",
"title": "AETest"
},
{
"const": "203591001",
"title": "LeonFan"
},
{
"const": "536580901",
"title": "Neils"
}
],
"title": "value",
"type": "string"
}
}
},
"Shirts Type": {
"title": "Shirts Type",
"type": "object",
"required": [
"value"
],
"properties": {
"value": {
"oneOf": [
{
"const": "100006585",
"title": "Casual Shirts"
},
{
"const": "100006586",
"title": "Dress Shirts"
},
{
"const": "200001208",
"title": "Tuxedo Shirts"
}
],
"title": "value",
"type": "string"
}
}
},
"Material": {
"title": "Material",
"type": "object",
"required": [
"value"
],
"properties": {
"value": {
"uniqueItems": true,
"title": "value",
"type": "array",
"items": {
"oneOf": [
{
"const": "47",
"title": "Cotton"
},
{
"const": "49",
"title": "SILK"
},
{
"const": "567",
"title": "Cashmere"
},
{
"const": "48",
"title": "Polyester"
},
{
"const": "90",
"title": "Wool"
},
{
"const": "7919",
"title": "Bamboo Fiber"
},
{
"const": "1912",
"title": "Lycra"
},
{
"const": "200002202",
"title": "Modal"
},
{
"const": "571",
"title": "Microfiber"
},
{
"const": "63",
"title": "Nylon"
},
{
"const": "89",
"title": "Rayon"
},
{
"const": "115",
"title": "Linen"
},
{
"const": "100019017",
"title": "Spandex"
},
{
"const": "200002203",
"title": "Acetate"
},
{
"const": "100019007",
"title": "Acrylic"
},
{
"const": "6709",
"title": "Polyester Fiber"
},
{
"const": "866",
"title": "Viscose"
},
{
"const": "1911",
"title": "Polyamide"
}
],
"type": "string"
}
}
}
},
"Sleeve Length(cm)": {
"title": "Sleeve Length(cm)",
"type": "object",
"required": [
"value"
],
"properties": {
"value": {
"oneOf": [
{
"const": "200001500",
"title": "Full"
},
{
"const": "200004140",
"title": "Three Quarter"
},
{
"const": "200004139",
"title": "Half"
},
{
"const": "200001498",
"title": "Short"
},
{
"const": "1874",
"title": "Sleeveless"
}
],
"title": "value",
"type": "string"
}
}
},
"Collar": {
"title": "Collar",
"type": "object",
"required": [
"value"
],
"properties": {
"value": {
"oneOf": [
{
"const": "200003574",
"title": "Turn-down Collar"
},
{
"const": "6987",
"title": "V-Neck"
},
{
"const": "8317",
"title": "Mandarin Collar"
},
{
"const": "200002493",
"title": "Square Collar"
},
{
"const": "200004110",
"title": "Sailor Collar"
},
{
"const": "201302092",
"title": "Collarless"
},
{
"const": "200005283",
"title": "Stand"
}
],
"title": "value",
"type": "string"
}
}
},
"Style": {
"title": "Style",
"type": "object",
"required": [
"value"
],
"properties": {
"value": {
"oneOf": [
{
"const": "200744490",
"title": "Gothic"
},
{
"const": "201456789",
"title": "Hip Hop"
},
{
"const": "200659434",
"title": "Punk Style"
},
{
"const": "203010837",
"title": "Moto& Biker"
},
{
"const": "203010836",
"title": "High Street"
},
{
"const": "203010840",
"title": "Smart Casual"
},
{
"const": "1893",
"title": "Formal"
},
{
"const": "200000072",
"title": "Casual"
},
{
"const": "200004123",
"title": "England Style"
},
{
"const": "200004124",
"title": "Preppy Style"
},
{
"const": "200004127",
"title": "Chinese Style"
},
{
"const": "200004126",
"title": "Japan Style"
},
{
"const": "203010839",
"title": "Safari Style"
},
{
"const": "200001277",
"title": "Military"
},
{
"const": "200004294",
"title": "vintage"
},
{
"const": "203010838",
"title": "Normcore/Minimalist"
}
],
"title": "value",
"type": "string"
}
}
},
"Fabric Type": {
"title": "Fabric Type",
"type": "object",
"required": [
"value"
],
"properties": {
"value": {
"oneOf": [
{
"const": "100006536",
"title": "Batik"
},
{
"const": "100006537",
"title": "Broadcloth"
},
{
"const": "3753",
"title": "Dobby"
},
{
"const": "3154",
"title": "Flannel"
},
{
"const": "7377",
"title": "Herringbone"
},
{
"const": "3762",
"title": "Poplin"
},
{
"const": "100005993",
"title": "Satin"
},
{
"const": "97",
"title": "Twill"
},
{
"const": "1910",
"title": "VELOUR"
},
{
"const": "360758",
"title": "Oxford"
}
],
"title": "value",
"type": "string"
}
}
},
"Model Number": {
"title": "Model Number",
"type": "string",
"properties": {}
},
"Sleeve Style": {
"title": "Sleeve Style",
"type": "object",
"required": [
"value"
],
"properties": {
"value": {
"oneOf": [
{
"const": "200013017",
"title": "REGULAR"
},
{
"const": "200004150",
"title": "Flare Sleeve"
},
{
"const": "200004152",
"title": "lantern Sleeve"
},
{
"const": "200004154",
"title": "Petal Sleeve"
}
],
"title": "value",
"type": "string"
}
}
},
"Pattern Type": {
"title": "Pattern Type",
"type": "object",
"required": [
"value"
],
"properties": {
"value": {
"oneOf": [
{
"const": "200001248",
"title": "Solid"
},
{
"const": "200004091",
"title": "Floral"
},
{
"const": "200001250",
"title": "Print"
},
{
"const": "200001251",
"title": "Polka Dot"
},
{
"const": "519",
"title": "Striped"
},
{
"const": "200004093",
"title": "Plaid"
},
{
"const": "200004094",
"title": "Paisley"
},
{
"const": "200001255",
"title": "Geometric"
},
{
"const": "200004096",
"title": "Patchwork"
},
{
"const": "200004097",
"title": "Animal"
},
{
"const": "360698",
"title": "Letter"
},
{
"const": "200004095",
"title": "Cartoon"
},
{
"const": "200003704",
"title": "Leopard"
},
{
"const": "200005952",
"title": "Bows"
},
{
"const": "200005953",
"title": "Skulls"
},
{
"const": "200005872",
"title": "Hand-painted"
},
{
"const": "200005954",
"title": "Argyle"
},
{
"const": "200572203",
"title": "Character"
},
{
"const": "4",
"title": "Other"
}
],
"title": "value",
"type": "string"
}
}
},
"Closure Type": {
"title": "Closure Type",
"type": "object",
"required": [
"value"
],
"properties": {
"value": {
"oneOf": [
{
"const": "200661015",
"title": "Pullover"
},
{
"const": "200658771",
"title": "None"
},
{
"const": "6830",
"title": "Zipper"
},
{
"const": "200001124",
"title": "Double Breasted"
},
{
"const": "200001125",
"title": "Single Breasted"
},
{
"const": "200005295",
"title": "Triple Breasted"
},
{
"const": "200005958",
"title": "Covered Button"
},
{
"const": "200005959",
"title": "Horn Button"
},
{
"const": "200005960",
"title": "Belt"
},
{
"const": "200005961",
"title": "Single Button"
},
{
"const": "200658769",
"title": "Open Stitch"
}
],
"title": "value",
"type": "string"
}
}
},
"Place Of Origin": {
"title": "Place Of Origin",
"type": "object",
"required": [
"value"
],
"properties": {
"value": {
"oneOf": [
{
"const": "361444",
"title": "Italy"
},
{
"const": "200660004",
"title": "China (Mainland)"
},
{
"const": "4",
"title": "Other"
}
],
"title": "value",
"type": "string"
}
}
}
}
},
"user_defined_attribute_list": {
"title": "user defined attribute list",
"type": "array",
"items": {
"type": "object",
"required": [
"attribute_name",
"attribute_value"
],
"properties": {
"attribute_name": {
"title": "attribute name",
"type": "string"
},
"attribute_value": {
"title": "attribute value",
"type": "string"
}
}
}
},
"sku_info_list": {
"title": "sku info list",
"type": "array",
"minItems": 1,
"items": {
"type": "object",
"required": [
"sku_code",
"inventory",
"price"
],
"properties": {
"sku_code": {
"title": "sku code",
"type": "string"
},
"inventory": {
"title": "inventory",
"type": "number"
},
"price": {
"title": "price",
"type": "number"
},
"discount_price": {
"title": "discount price",
"type": "number"
},
"sku_attributes": {
"title": "sku attributes",
"type": "object",
"required": [],
"properties": {
"Size": {
"title": "Size",
"type": "object",
"required": [
"value"
],
"properties": {
"alias": {
"title": "alias",
"type": "string"
},
"value": {
"oneOf": [
{
"const": "4181",
"title": "XXS"
},
{
"const": "100014066",
"title": "XS"
},
{
"const": "100014064",
"title": "S"
},
{
"const": "361386",
"title": "M"
},
{
"const": "361385",
"title": "L"
},
{
"const": "100014065",
"title": "XL"
},
{
"const": "4182",
"title": "XXL"
},
{
"const": "4183",
"title": "XXXL"
},
{
"const": "200000990",
"title": "4XL"
},
{
"const": "200000991",
"title": "5XL"
},
{
"const": "200005259",
"title": "6XL"
},
{
"const": "200661035",
"title": "7XL"
},
{
"const": "200661036",
"title": "8XL"
},
{
"const": "201447486",
"title": "9XL"
},
{
"const": "201447487",
"title": "10XL"
},
{
"const": "200003528",
"title": "One Size"
},
{
"const": "3115",
"title": "30"
},
{
"const": "200000331",
"title": "32"
},
{
"const": "100010481",
"title": "34"
},
{
"const": "200000333",
"title": "35"
},
{
"const": "200000334",
"title": "36"
},
{
"const": "100010482",
"title": "37"
},
{
"const": "200000898",
"title": "38"
},
{
"const": "200000364",
"title": "39"
},
{
"const": "100013888",
"title": "40"
},
{
"const": "100010483",
"title": "41"
},
{
"const": "200000337",
"title": "42"
},
{
"const": "200000338",
"title": "43"
},
{
"const": "100010487",
"title": "44"
},
{
"const": "3116",
"title": "45"
},
{
"const": "200000899",
"title": "46"
},
{
"const": "200000900",
"title": "48"
},
{
"const": "200000901",
"title": "50"
},
{
"const": "200000902",
"title": "52"
},
{
"const": "100010489",
"title": "54"
},
{
"const": "3117",
"title": "56"
},
{
"const": "200006272",
"title": "XXXS"
}
],
"title": "value",
"type": "string"
}
}
},
"Color": {
"title": "Color",
"type": "object",
"required": [
"value"
],
"properties": {
"alias": {
"title": "alias",
"type": "string"
},
"sku_image_url": {
"title": "sku image url",
"type": "string"
},
"value": {
"oneOf": [
{
"const": "771",
"title": "Beige"
},
{
"const": "193",
"title": "Black"
},
{
"const": "173",
"title": "Blue"
},
{
"const": "1254",
"title": "Sky blue"
},
{
"const": "365458",
"title": "Brown"
},
{
"const": "350850",
"title": "Gold"
},
{
"const": "691",
"title": "Gray"
},
{
"const": "200004890",
"title": "Dark Grey"
},
{
"const": "175",
"title": "Green"
},
{
"const": "200004889",
"title": "Army green"
},
{
"const": "200002130",
"title": "Ivory"
},
{
"const": "200001438",
"title": "Khaki"
},
{
"const": "350852",
"title": "Orange"
},
{
"const": "1052",
"title": "Pink"
},
{
"const": "496",
"title": "Purple"
},
{
"const": "200004891",
"title": "Lavender"
},
{
"const": "10",
"title": "Red"
},
{
"const": "350853",
"title": "Silver"
},
{
"const": "29",
"title": "White"
},
{
"const": "366",
"title": "YELLOW"
},
{
"const": "200003699",
"title": "Multi"
},
{
"const": "203008817",
"title": "Fuchsia"
},
{
"const": "203008818",
"title": "Turquoise"
},
{
"const": "202997806",
"title": "Coral Red"
},
{
"const": "202520811",
"title": "Mint"
},
{
"const": "201800840",
"title": "Navy Blue"
}
],
"title": "value",
"type": "string"
}
}
}
}
}
}
}
},
"inventory_deduction_strategy": {
"title": "inventory deduction strategy",
"type": "string",
"oneOf": [
{
"const": "place_order_withhold",
"title": "By orders"
},
{
"const": "payment_success_deduct",
"title": "By payments"
}
],
"description": "<p>Deducted based on orders: Stock will be deducted and reserved once the orders are made. Stock will be released if the payment is not made ontime. This method can help prevent oversold situation.</p>\r\n<p>&nbsp;</p>\r\n<p>Deducted based on payments: Stock will be deducted after payments. This can help avoid&nbsp;<span style=\"color: #222222; font-family: arial, sans-serif; font-size: 12px; font-style: normal; font-variant-ligatures: normal; font-variant-caps: normal; font-weight: 100; letter-spacing: normal; orphans: 2; text-align: left; text-indent: 0px; text-transform: none;white-space: normal; widows: 2; word-spacing: 0px; -webkit-text-stroke-width: 0px; background-color: #ffffff; text-decoration-style: initial; text-decoration-color: initial; float: none; display: inline !important;\">mischievous orders but can result in oversold when multiple payments are made at the same time when stock is close to zero.</span></p>"
},
"package_weight": {
"title": "package weight",
"type": "number",
"description": "kg/piece Weight and packaging size: Please fill in the weight including packaging. Inaccurate information will results in extra shipping costs and failed shipping."
},
"package_length": {
"title": "package length",
"type": "number",
"description": "Length (cm) Weight and packaging size: accurate fill in packaging after weight and product packaging size, avoid for fill in error and cause of shipping loss and trading reduce.\r\n"
},
"package_height": {
"title": "package height",
"type": "number",
"description": "Height (cm)"
},
"package_width": {
"title": "package width",
"type": "number",
"description": "Width (cm)"
},
"shipping_preparation_time": {
"title": "shipping preparation time (day unit)",
"type": "number",
"maximum": 7,
"description": "Shipping Preparation Time will be calculated from the completion and confirmation of payment when the \"Ship\" button is shown.\r\nAssume that you set the Shipping Preparation Time for 3 days. Once the \"Ship\" button appear after payment success, have 3 working days to fill in the delivery information. If failed to meet the Shipping Preparation Time, the system will close the order and the payment will be fully refunded to buyers. Recommendations seller delivery after timely in delivery of in fill in delivery information, that might otherwiseoccur payment two of the situation. Please set a reasonable Shipping Preparation Time to aviod failed orders."
},
"shipping_template_id": {
"title": "shippingtemplate id",
"type": "string",
"oneOf": [
{
"const": "714844311",
"title": "Test Shipping Template"
},
{
"const": "1001649004",
"title": "Test ShippingFrom Spain"
}
]
},
"service_template_id": {
"title": "service template id",
"type": "string",
"oneOf": [
{
"const": "0",
"title": "Service Template for New Sellers"
},
{
"const": "745017",
"title": "Test Service Template"
}
]
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment