Shein Taxonomy
Version | Date | Created / Updated | Notes |
---|---|---|---|
v1.0 | Hristiyan | First publish | |
v1.1 | 06/08/2024 | Hristiyan | Added name logic for taxonomy export file |
v1.2 | 07/08/2024 | Hristiyan | Added navigation path header for the exported file |
v1.3 | 08.08.2024 | Bogomil | Include attribute_mode logic |
v1.4 | 14.08.2024 | Bogomil | Taxonomy Required attribute |
The purpose of this page is to give detailed explanations of how we will download the taxonomy for Shein.
The taxonomy must be stored in classes, which should be available for exports from the UI in Export Taxonomy table. The taxonomy is used for internal validation and we will need to map the values and push the codes to Shein.
Note: Every time we send products for creation we have to do internal check if all required attributes are part of the the product as Item Specifics according to their taxonomy which we download and store on the instance,
To download the taxonomy, we should follow the steps:
Please note that the request headers are the same for every call.
Request Parameters (Request Header)
Parameter Name | Data Type | Default Values | Required' TRUE | Description |
---|---|---|---|---|
language | string | Yes | language |
We should pick the language based on the Shein territory that is selected on the account. The language should be in an lowercase iso2 country code.
We always want to use English for the taxonomy however if for some reason we receive category or attribute name in different language or not starting with character we want to skip them. | | Content-Type | string | application/json | Yes | | | x-lt-openKeyId | string | | Yes | Unique permission identifier openKeyId when accessing user private data | | x-lt-timestamp | string | | Yes | Request timestamp, the format is the value of time converted to milliseconds, that is, the time from January 1, 1970 to the present is converted to milliseconds, such as: 1583398764000 | | x-lt-signature | string | | Yes | Interface signature |
Get the final category
API Call : POST /open-api/goods/query-category-tree
API Docs: https://open.sheincorp.com/documents/apidoc/detail/3000178-1000001
Example response :
{
"code": "0",
"msg": "OK",
"info": {
"data": [
{
"category_id": 2024,
"product_type_id": 0,
"parent_category_id": 0,
"category_name": "Men",
"last_category": false,
"children": [
{
"category_id": 1967,
"product_type_id": 0,
"parent_category_id": 2024,
"category_name": "Men Clothing",
"last_category": false,
"children": [
{
"category_id": 2045,
"product_type_id": 0,
"parent_category_id": 1967,
"category_name": "cccc",
"last_category": false,
"children": [
{
"category_id": 1972,
"product_type_id": 85,
"parent_category_id": 2045,
"category_name": "Men Sweatshirts",
"last_category": true,
"children": [],
"is_clothing": null
}
],
"is_clothing": null
},
{
"category_id": 2043,
"product_type_id": 0,
"parent_category_id": 1967,
"category_name": "cccc",
"last_category": false,
"children": [
{
"category_id": 1974,
"product_type_id": 75,
"parent_category_id": 2043,
"category_name": "Men Shorts",
"last_category": true,
"children": [],
"is_clothing": null
},
{
"category_id": 1976,
"product_type_id": 75,
"parent_category_id": 2043,
"category_name": "Men Pants",
"last_category": true,
"children": [],
"is_clothing": null
},
{
"category_id": 2707,
"product_type_id": 569,
"parent_category_id": 2043,
"category_name": "Men Sweatpants",
"last_category": true,
"children": [],
"is_clothing": null
}
],
"is_clothing": null
},
{
"category_id": 2044,
"product_type_id": 0,
"parent_category_id": 1967,
"category_name": "cccc",
"last_category": false,
"children": [
{
"category_id": 1975,
"product_type_id": 68,
"parent_category_id": 2044,
"category_name": "Men Cardigans & Jumpers",
"last_category": true,
"children": [],
"is_clothing": null
}
],
"is_clothing": null
}
],
"is_clothing": null
}
],
"meta": {
"count": 1,
"customObj": null
}
},
"bbl": null
}
Once we have the categories, we need to get the attributes per each category product_type_id.
We need to keep this product_type_id
which is related to the category. Then when we are creating the products we need to submit the product_type_id
based on the category
Get the attributes
API Call : POST /open-api/goods/query-attribute-template
API Docs : https://open.sheincorp.com/documents/apidoc/detail/3000091-1000001
Example request body :
{"product_type_id_list":[1967]}
Example response :
{
"code": "0",
"msg": "OK",
"info": {
"data": [
{
"product_type_id": 1967,
"business_mode": 13,
"attribute_infos": [
{
"attribute_id": 87,
"attribute_name": "Size",
"attribute_name_en": "",
"attribute_is_show": 1,
"attribute_source": 1,
"attribute_label": 1,
"attribute_mode": 2,
"data_dimension": 1,
"attribute_status": 3,
"attribute_type": 1,
"business_mode": 13,
"is_sample": 0,
"supplier_id": 0,
"attribute_doc": null,
"attribute_doc_image_list": null,
"attribute_value_info_list": [
{
"attribute_value_id": 474,
"attribute_value": "one-size",
"attribute_value_en": "",
"is_custom_attribute_value": false,
"is_show": 1,
"supplier_id": 0,
"attribute_value_doc": null,
"attribute_value_doc_image_list": null,
"attribute_value_group_list": null
}
]
},
{
"attribute_id": 27,
"attribute_name": "color",
"attribute_name_en": "",
"attribute_is_show": 1,
"attribute_source": 1,
"attribute_label": 1,
"attribute_mode": 2,
"data_dimension": 1,
"attribute_status": 3,
"attribute_type": 1,
"business_mode": 13,
"is_sample": 0,
"supplier_id": 0,
"attribute_doc": null,
"attribute_doc_image_list": null,
"attribute_value_info_list": [
{
"attribute_value_id": 78,
"attribute_value": "Apricot",
"attribute_value_en": "",
"is_custom_attribute_value": false,
"is_show": 1,
"supplier_id": 0,
"attribute_value_doc": null,
"attribute_value_doc_image_list": null,
"attribute_value_group_list": null
},
{
"attribute_value_id": 81,
"attribute_value": "Army Green",
"attribute_value_en": "",
"is_custom_attribute_value": false,
"is_show": 1,
"supplier_id": 0,
"attribute_value_doc": null,
"attribute_value_doc_image_list": null,
"attribute_value_group_list": null
},
{
"attribute_value_id": 1000112,
"attribute_value": "DYJ_新款",
"attribute_value_en": "",
"is_custom_attribute_value": false,
"is_show": 1,
"supplier_id": 0,
"attribute_value_doc": null,
"attribute_value_doc_image_list": null,
"attribute_value_group_list": null
},
{
"attribute_value_id": 1000123,
"attribute_value": "DYJ_H_EN",
"attribute_value_en": "",
"is_custom_attribute_value": false,
"is_show": 1,
"supplier_id": 0,
"attribute_value_doc": null,
"attribute_value_doc_image_list": null,
"attribute_value_group_list": null
},
{
"attribute_value_id": 103,
"attribute_value": "Beige",
"attribute_value_en": "",
"is_custom_attribute_value": false,
"is_show": 1,
"supplier_id": 0,
"attribute_value_doc": null,
"attribute_value_doc_image_list": null,
"attribute_value_group_list": null
},
{
"attribute_value_id": 112,
"attribute_value": "Black",
"attribute_value_en": "",
"is_custom_attribute_value": false,
"is_show": 1,
"supplier_id": 0,
"attribute_value_doc": null,
"attribute_value_doc_image_list": null,
"attribute_value_group_list": null
},
{
"attribute_value_id": 113,
"attribute_value": "Black and White",
"attribute_value_en": "",
"is_custom_attribute_value": false,
"is_show": 1,
"supplier_id": 0,
"attribute_value_doc": null,
"attribute_value_doc_image_list": null,
"attribute_value_group_list": null
},
{
"attribute_value_id": 118,
"attribute_value": "blackk",
"attribute_value_en": "",
"is_custom_attribute_value": false,
"is_show": 1,
"supplier_id": 0,
"attribute_value_doc": null,
"attribute_value_doc_image_list": null,
"attribute_value_group_list": null
},
{
"attribute_value_id": 1000135,
"attribute_value": "DYJ_常规款",
"attribute_value_en": "",
"is_custom_attribute_value": false,
"is_show": 1,
"supplier_id": 0,
"attribute_value_doc": null,
"attribute_value_doc_image_list": null,
"attribute_value_group_list": null
},
{
"attribute_value_id": 137,
"attribute_value": "Bronze",
"attribute_value_en": "",
"is_custom_attribute_value": false,
"is_show": 1,
"supplier_id": 0,
"attribute_value_doc": null,
"attribute_value_doc_image_list": null,
"attribute_value_group_list": null
},
{
"attribute_value_id": 140,
"attribute_value": "Brown",
"attribute_value_en": "",
"is_custom_attribute_value": false,
"is_show": 1,
"supplier_id": 0,
"attribute_value_doc": null,
"attribute_value_doc_image_list": null,
"attribute_value_group_list": null
},
{
"attribute_value_id": 144,
"attribute_value": "Burgundy",
"attribute_value_en": "",
"is_custom_attribute_value": false,
"is_show": 1,
"supplier_id": 0,
"attribute_value_doc": null,
"attribute_value_doc_image_list": null,
"attribute_value_group_list": null
},
{
"attribute_value_id": 1000109,
"attribute_value": "DYJ_流行款_EN",
"attribute_value_en": "",
"is_custom_attribute_value": false,
"is_show": 1,
"supplier_id": 0,
"attribute_value_doc": null,
"attribute_value_doc_image_list": null,
"attribute_value_group_list": null
},
{
"attribute_value_id": 1000114,
"attribute_value": "DYJ_针织",
"attribute_value_en": "",
"is_custom_attribute_value": false,
"is_show": 1,
"supplier_id": 0,
"attribute_value_doc": null,
"attribute_value_doc_image_list": null,
"attribute_value_group_list": null
},
{
"attribute_value_id": 152,
"attribute_value": "Camel",
"attribute_value_en": "",
"is_custom_attribute_value": false,
"is_show": 1,
"supplier_id": 0,
"attribute_value_doc": null,
"attribute_value_doc_image_list": null,
"attribute_value_group_list": null
},
{
"attribute_value_id": 171,
"attribute_value": "Champagne",
"attribute_value_en": "",
"is_custom_attribute_value": false,
"is_show": 1,
"supplier_id": 0,
"attribute_value_doc": null,
"attribute_value_doc_image_list": null,
"attribute_value_group_list": null
},
{
"attribute_value_id": 1000130,
"attribute_value": "DYJ_踩脚裤_EN",
"attribute_value_en": "",
"is_custom_attribute_value": false,
"is_show": 1,
"supplier_id": 0,
"attribute_value_doc": null,
"attribute_value_doc_image_list": null,
"attribute_value_group_list": null
},
{
"attribute_value_id": 182,
"attribute_value": "Clear",
"attribute_value_en": "",
"is_custom_attribute_value": false,
"is_show": 1,
"supplier_id": 0,
"attribute_value_doc": null,
"attribute_value_doc_image_list": null,
"attribute_value_group_list": null
},
{
"attribute_value_id": 1000121,
"attribute_value": "DYJ_紧身_en",
"attribute_value_en": "",
"is_custom_attribute_value": false,
"is_show": 1,
"supplier_id": 0,
"attribute_value_doc": null,
"attribute_value_doc_image_list": null,
"attribute_value_group_list": null
},
{
"attribute_value_id": 1000110,
"attribute_value": "DYJ_时尚款_EN",
"attribute_value_en": "",
"is_custom_attribute_value": false,
"is_show": 1,
"supplier_id": 0,
"attribute_value_doc": null,
"attribute_value_doc_image_list": null,
"attribute_value_group_list": null
},
{
"attribute_value_id": 2427,
"attribute_value": "",
"attribute_value_en": "",
"is_custom_attribute_value": false,
"is_show": 1,
"supplier_id": 0,
"attribute_value_doc": null,
"attribute_value_doc_image_list": null,
"attribute_value_group_list": null
},
{
"attribute_value_id": 2566,
"attribute_value": "frankie_test",
"attribute_value_en": "",
"is_custom_attribute_value": false,
"is_show": 1,
"supplier_id": 0,
"attribute_value_doc": null,
"attribute_value_doc_image_list": null,
"attribute_value_group_list": null
},
{
"attribute_value_id": 2493,
"attribute_value": "Dark Grey",
"attribute_value_en": "",
"is_custom_attribute_value": false,
"is_show": 1,
"supplier_id": 0,
"attribute_value_doc": null,
"attribute_value_doc_image_list": null,
"attribute_value_group_list": null
},
{
"attribute_value_id": 1000116,
"attribute_value": "DYJ_毛织_EN",
"attribute_value_en": "",
"is_custom_attribute_value": false,
"is_show": 1,
"supplier_id": 0,
"attribute_value_doc": null,
"attribute_value_doc_image_list": null,
"attribute_value_group_list": null
},
{
"attribute_value_id": 1000115,
"attribute_value": "DYJ_梭织_EN",
"attribute_value_en": "",
"is_custom_attribute_value": false,
"is_show": 1,
"supplier_id": 0,
"attribute_value_doc": null,
"attribute_value_doc_image_list": null,
"attribute_value_group_list": null
},
{
"attribute_value_id": 1000129,
"attribute_value": "DYJ_蝙蝠袖_EN",
"attribute_value_en": "",
"is_custom_attribute_value": false,
"is_show": 1,
"supplier_id": 0,
"attribute_value_doc": null,
"attribute_value_doc_image_list": null,
"attribute_value_group_list": null
},
{
"attribute_value_id": 322,
"attribute_value": "Ginger",
"attribute_value_en": "",
"is_custom_attribute_value": false,
"is_show": 1,
"supplier_id": 0,
"attribute_value_doc": null,
"attribute_value_doc_image_list": null,
"attribute_value_group_list": null
},
{
"attribute_value_id": 330,
"attribute_value": "Gold",
"attribute_value_en": "",
"is_custom_attribute_value": false,
"is_show": 1,
"supplier_id": 0,
"attribute_value_doc": null,
"attribute_value_doc_image_list": null,
"attribute_value_group_list": null
},
{
"attribute_value_id": 334,
"attribute_value": "Green",
"attribute_value_en": "",
"is_custom_attribute_value": false,
"is_show": 1,
"supplier_id": 0,
"attribute_value_doc": null,
"attribute_value_doc_image_list": null,
"attribute_value_group_list": null
},
{
"attribute_value_id": 336,
"attribute_value": "Grey",
"attribute_value_en": "",
"is_custom_attribute_value": false,
"is_show": 1,
"supplier_id": 0,
"attribute_value_doc": null,
"attribute_value_doc_image_list": null,
"attribute_value_group_list": null
},
{
"attribute_value_id": 364,
"attribute_value": "Hot Pink",
"attribute_value_en": "",
"is_custom_attribute_value": false,
"is_show": 1,
"supplier_id": 0,
"attribute_value_doc": null,
"attribute_value_doc_image_list": null,
"attribute_value_group_list": null
},
{
"attribute_value_id": 379,
"attribute_value": "Khaki",
"attribute_value_en": "",
"is_custom_attribute_value": false,
"is_show": 1,
"supplier_id": 0,
"attribute_value_doc": null,
"attribute_value_doc_image_list": null,
"attribute_value_group_list": null
},
{
"attribute_value_id": 2486,
"attribute_value": "Light Grey",
"attribute_value_en": "",
"is_custom_attribute_value": false,
"is_show": 1,
"supplier_id": 0,
"attribute_value_doc": null,
"attribute_value_doc_image_list": null,
"attribute_value_group_list": null
},
{
"attribute_value_id": 1000117,
"attribute_value": "pink",
"attribute_value_en": "",
"is_custom_attribute_value": false,
"is_show": 1,
"supplier_id": 0,
"attribute_value_doc": null,
"attribute_value_doc_image_list": null,
"attribute_value_group_list": null
},
{
"attribute_value_id": 1000132,
"attribute_value": "DYJ_泡泡裙_EN",
"attribute_value_en": "",
"is_custom_attribute_value": false,
"is_show": 1,
"supplier_id": 0,
"attribute_value_doc": null,
"attribute_value_doc_image_list": null,
"attribute_value_group_list": null
},
{
"attribute_value_id": 421,
"attribute_value": "Maroon",
"attribute_value_en": "",
"is_custom_attribute_value": false,
"is_show": 1,
"supplier_id": 0,
"attribute_value_doc": null,
"attribute_value_doc_image_list": null,
"attribute_value_group_list": null
},
{
"attribute_value_id": 1000127,
"attribute_value": "DYJ_翻领_EN",
"attribute_value_en": "",
"is_custom_attribute_value": false,
"is_show": 1,
"supplier_id": 0,
"attribute_value_doc": null,
"attribute_value_doc_image_list": null,
"attribute_value_group_list": null
},
{
"attribute_value_id": 1000118,
"attribute_value": "BLUE",
"attribute_value_en": "",
"is_custom_attribute_value": false,
"is_show": 1,
"supplier_id": 0,
"attribute_value_doc": null,
"attribute_value_doc_image_list": null,
"attribute_value_group_list": null
},
{
"attribute_value_id": 2436,
"attribute_value": "Mint Green",
"attribute_value_en": "",
"is_custom_attribute_value": false,
"is_show": 1,
"supplier_id": 0,
"attribute_value_doc": null,
"attribute_value_doc_image_list": null,
"attribute_value_group_list": null
},
{
"attribute_value_id": 1000131,
"attribute_value": "DYJ_阔腿裤_EN",
"attribute_value_en": "",
"is_custom_attribute_value": false,
"is_show": 1,
"supplier_id": 0,
"attribute_value_doc": null,
"attribute_value_doc_image_list": null,
"attribute_value_group_list": null
},
{
"attribute_value_id": 447,
"attribute_value": "Multicolor",
"attribute_value_en": "",
"is_custom_attribute_value": false,
"is_show": 1,
"supplier_id": 0,
"attribute_value_doc": null,
"attribute_value_doc_image_list": null,
"attribute_value_group_list": null
},
{
"attribute_value_id": 1000111,
"attribute_value": "DYJ_复色款_EN",
"attribute_value_en": "",
"is_custom_attribute_value": false,
"is_show": 1,
"supplier_id": 0,
"attribute_value_doc": null,
"attribute_value_doc_image_list": null,
"attribute_value_group_list": null
},
{
"attribute_value_id": 1000134,
"attribute_value": "DYJ_超短款_EN",
"attribute_value_en": "",
"is_custom_attribute_value": false,
"is_show": 1,
"supplier_id": 0,
"attribute_value_doc": null,
"attribute_value_doc_image_list": null,
"attribute_value_group_list": null
},
{
"attribute_value_id": 1000133,
"attribute_value": "DYJ_鱼尾裙_EN",
"attribute_value_en": "",
"is_custom_attribute_value": false,
"is_show": 1,
"supplier_id": 0,
"attribute_value_doc": null,
"attribute_value_doc_image_list": null,
"attribute_value_group_list": null
},
{
"attribute_value_id": 475,
"attribute_value": "Orange",
"attribute_value_en": "",
"is_custom_attribute_value": false,
"is_show": 1,
"supplier_id": 0,
"attribute_value_doc": null,
"attribute_value_doc_image_list": null,
"attribute_value_group_list": null
},
{
"attribute_value_id": 513,
"attribute_value": "Pink",
"attribute_value_en": "",
"is_custom_attribute_value": false,
"is_show": 1,
"supplier_id": 0,
"attribute_value_doc": null,
"attribute_value_doc_image_list": null,
"attribute_value_group_list": null
},
{
"attribute_value_id": 536,
"attribute_value": "Purple",
"attribute_value_en": "",
"is_custom_attribute_value": false,
"is_show": 1,
"supplier_id": 0,
"attribute_value_doc": null,
"attribute_value_doc_image_list": null,
"attribute_value_group_list": null
},
{
"attribute_value_id": 544,
"attribute_value": "Red",
"attribute_value_en": "",
"is_custom_attribute_value": false,
"is_show": 1,
"supplier_id": 0,
"attribute_value_doc": null,
"attribute_value_doc_image_list": null,
"attribute_value_group_list": null
},
{
"attribute_value_id": 1000136,
"attribute_value": "DYJ_超长袖_EN",
"attribute_value_en": "",
"is_custom_attribute_value": false,
"is_show": 1,
"supplier_id": 0,
"attribute_value_doc": null,
"attribute_value_doc_image_list": null,
"attribute_value_group_list": null
},
{
"attribute_value_id": 1000126,
"attribute_value": "DYJ_棒球领_EN",
"attribute_value_en": "",
"is_custom_attribute_value": false,
"is_show": 1,
"supplier_id": 0,
"attribute_value_doc": null,
"attribute_value_doc_image_list": null,
"attribute_value_group_list": null
},
{
"attribute_value_id": 1000113,
"attribute_value": "DYJ_套用版型款",
"attribute_value_en": "",
"is_custom_attribute_value": false,
"is_show": 1,
"supplier_id": 0,
"attribute_value_doc": null,
"attribute_value_doc_image_list": null,
"attribute_value_group_list": null
},
{
"attribute_value_id": 1705,
"attribute_value": "",
"attribute_value_en": "",
"is_custom_attribute_value": false,
"is_show": 1,
"supplier_id": 0,
"attribute_value_doc": null,
"attribute_value_doc_image_list": null,
"attribute_value_group_list": null
},
{
"attribute_value_id": 1000108,
"attribute_value": "冬",
"attribute_value_en": "",
"is_custom_attribute_value": false,
"is_show": 1,
"supplier_id": 0,
"attribute_value_doc": null,
"attribute_value_doc_image_list": null,
"attribute_value_group_list": null
},
{
"attribute_value_id": 562,
"attribute_value": "Royal Blue",
"attribute_value_en": "",
"is_custom_attribute_value": false,
"is_show": 1,
"supplier_id": 0,
"attribute_value_doc": null,
"attribute_value_doc_image_list": null,
"attribute_value_group_list": null
},
{
"attribute_value_id": 1000119,
"attribute_value": "DYJ_修身_en",
"attribute_value_en": "",
"is_custom_attribute_value": false,
"is_show": 1,
"supplier_id": 0,
"attribute_value_doc": null,
"attribute_value_doc_image_list": null,
"attribute_value_group_list": null
},
{
"attribute_value_id": 1000107,
"attribute_value": "秋",
"attribute_value_en": "",
"is_custom_attribute_value": false,
"is_show": 1,
"supplier_id": 0,
"attribute_value_doc": null,
"attribute_value_doc_image_list": null,
"attribute_value_group_list": null
},
{
"attribute_value_id": 601,
"attribute_value": "Silver",
"attribute_value_en": "",
"is_custom_attribute_value": false,
"is_show": 1,
"supplier_id": 0,
"attribute_value_doc": null,
"attribute_value_doc_image_list": null,
"attribute_value_group_list": null
},
{
"attribute_value_id": 1000120,
"attribute_value": "DYJ_宽松_en",
"attribute_value_en": "",
"is_custom_attribute_value": false,
"is_show": 1,
"supplier_id": 0,
"attribute_value_doc": null,
"attribute_value_doc_image_list": null,
"attribute_value_group_list": null
},
{
"attribute_value_id": 2431,
"attribute_value": "",
"attribute_value_en": "",
"is_custom_attribute_value": false,
"is_show": 1,
"supplier_id": 0,
"attribute_value_doc": null,
"attribute_value_doc_image_list": null,
"attribute_value_group_list": null
},
{
"attribute_value_id": 1000128,
"attribute_value": "DYJ_泡泡袖_EN",
"attribute_value_en": "",
"is_custom_attribute_value": false,
"is_show": 1,
"supplier_id": 0,
"attribute_value_doc": null,
"attribute_value_doc_image_list": null,
"attribute_value_group_list": null
},
{
"attribute_value_id": 739,
"attribute_value": "Whiteen",
"attribute_value_en": "",
"is_custom_attribute_value": false,
"is_show": 1,
"supplier_id": 0,
"attribute_value_doc": null,
"attribute_value_doc_image_list": null,
"attribute_value_group_list": null
},
{
"attribute_value_id": 762,
"attribute_value": "Yellow",
"attribute_value_en": "",
"is_custom_attribute_value": false,
"is_show": 1,
"supplier_id": 0,
"attribute_value_doc": null,
"attribute_value_doc_image_list": null,
"attribute_value_group_list": null
}
]
},
{
"attribute_id": 1000624,
"attribute_name": "cyq-属性名",
"attribute_name_en": "",
"attribute_is_show": 1,
"attribute_source": 1,
"attribute_label": 0,
"attribute_mode": 1,
"data_dimension": 2,
"attribute_status": 2,
"attribute_type": 4,
"business_mode": 13,
"is_sample": 0,
"supplier_id": 0,
"attribute_doc": null,
"attribute_doc_image_list": null,
"attribute_value_info_list": [
{
"attribute_value_id": 1007917,
"attribute_value": "Battery Powered",
"attribute_value_en": "",
"is_custom_attribute_value": false,
"is_show": 1,
"supplier_id": 0,
"attribute_value_doc": null,
"attribute_value_doc_image_list": null,
"attribute_value_group_list": null
},
{
"attribute_value_id": 1000583,
"attribute_value": "en402",
"attribute_value_en": "",
"is_custom_attribute_value": false,
"is_show": 1,
"supplier_id": 0,
"attribute_value_doc": null,
"attribute_value_doc_image_list": null,
"attribute_value_group_list": null
},
{
"attribute_value_id": 1000364,
"attribute_value": "en183",
"attribute_value_en": "",
"is_custom_attribute_value": false,
"is_show": 1,
"supplier_id": 0,
"attribute_value_doc": null,
"attribute_value_doc_image_list": null,
"attribute_value_group_list": null
},
{
"attribute_value_id": 1000584,
"attribute_value": "en403",
"attribute_value_en": "",
"is_custom_attribute_value": false,
"is_show": 1,
"supplier_id": 0,
"attribute_value_doc": null,
"attribute_value_doc_image_list": null,
"attribute_value_group_list": null
},
{
"attribute_value_id": 1000585,
"attribute_value": "en404",
"attribute_value_en": "",
"is_custom_attribute_value": false,
"is_show": 1,
"supplier_id": 0,
"attribute_value_doc": null,
"attribute_value_doc_image_list": null,
"attribute_value_group_list": null
},
{
"attribute_value_id": 1049,
"attribute_value": "USB Charger",
"attribute_value_en": "",
"is_custom_attribute_value": false,
"is_show": 1,
"supplier_id": 0,
"attribute_value_doc": null,
"attribute_value_doc_image_list": null,
"attribute_value_group_list": null
}
]
},
{
"attribute_id": 160,
"attribute_name": "girs like",
"attribute_name_en": "",
"attribute_is_show": 1,
"attribute_source": 1,
"attribute_label": 0,
"attribute_mode": 1,
"data_dimension": 2,
"attribute_status": 3,
"attribute_type": 4,
"business_mode": 13,
"is_sample": 0,
"supplier_id": 0,
"attribute_doc": null,
"attribute_doc_image_list": null,
"attribute_value_info_list": [
{
"attribute_value_id": 62,
"attribute_value": "ABS",
"attribute_value_en": "",
"is_custom_attribute_value": false,
"is_show": 1,
"supplier_id": 0,
"attribute_value_doc": null,
"attribute_value_doc_image_list": null,
"attribute_value_group_list": null
},
{
"attribute_value_id": 63,
"attribute_value": "Acrylic",
"attribute_value_en": "",
"is_custom_attribute_value": false,
"is_show": 1,
"supplier_id": 0,
"attribute_value_doc": null,
"attribute_value_doc_image_list": null,
"attribute_value_group_list": null
},
{
"attribute_value_id": 1006486,
"attribute_value": "Agate",
"attribute_value_en": "",
"is_custom_attribute_value": false,
"is_show": 1,
"supplier_id": 0,
"attribute_value_doc": null,
"attribute_value_doc_image_list": null,
"attribute_value_group_list": null
},
{
"attribute_value_id": 865,
"attribute_value": "Aluminum",
"attribute_value_en": "",
"is_custom_attribute_value": false,
"is_show": 1,
"supplier_id": 0,
"attribute_value_doc": null,
"attribute_value_doc_image_list": null,
"attribute_value_group_list": null
},
{
"attribute_value_id": 1318,
"attribute_value": "",
"attribute_value_en": "",
"is_custom_attribute_value": false,
"is_show": 1,
"supplier_id": 0,
"attribute_value_doc": null,
"attribute_value_doc_image_list": null,
"attribute_value_group_list": null
},
{
"attribute_value_id": 1006507,
"attribute_value": "Amazonite",
"attribute_value_en": "",
"is_custom_attribute_value": false,
"is_show": 1,
"supplier_id": 0,
"attribute_value_doc": null,
"attribute_value_doc_image_list": null,
"attribute_value_group_list": null
},
{
"attribute_value_id": 1006496,
"attribute_value": "Apatite",
"attribute_value_en": "",
"is_custom_attribute_value": false,
"is_show": 1,
"supplier_id": 0,
"attribute_value_doc": null,
"attribute_value_doc_image_list": null,
"attribute_value_group_list": null
},
{
"attribute_value_id": 1006497,
"attribute_value": "Aquamarine",
"attribute_value_en": "",
"is_custom_attribute_value": false,
"is_show": 1,
"supplier_id": 0,
"attribute_value_doc": null,
"attribute_value_doc_image_list": null,
"attribute_value_group_list": null
},
{
"attribute_value_id": 1006913,
"attribute_value": "Artificial Crystal",
"attribute_value_en": "",
"is_custom_attribute_value": false,
"is_show": 1,
"supplier_id": 0,
"attribute_value_doc": null,
"attribute_value_doc_image_list": null,
"attribute_value_group_list": null
},
{
"attribute_value_id": 1006492,
"attribute_value": "Aventurine",
"attribute_value_en": "",
"is_custom_attribute_value": false,
"is_show": 1,
"supplier_id": 0,
"attribute_value_doc": null,
"attribute_value_doc_image_list": null,
"attribute_value_group_list": null
},
{
"attribute_value_id": 91,
"attribute_value": "",
"attribute_value_en": null,
"is_custom_attribute_value": false,
"is_show": 1,
"supplier_id": 0,
"attribute_value_doc": null,
"attribute_value_doc_image_list": null,
"attribute_value_group_list": null
},
{
"attribute_value_id": 1007848,
"attribute_value": "Bovine Leather",
"attribute_value_en": "",
"is_custom_attribute_value": false,
"is_show": 1,
"supplier_id": 0,
"attribute_value_doc": null,
"attribute_value_doc_image_list": null,
"attribute_value_group_list": null
},
{
"attribute_value_id": 1679,
"attribute_value": "",
"attribute_value_en": "",
"is_custom_attribute_value": false,
"is_show": 1,
"supplier_id": 0,
"attribute_value_doc": null,
"attribute_value_doc_image_list": null,
"attribute_value_group_list": null
},
{
"attribute_value_id": 1005708,
"attribute_value": "Carborundum",
"attribute_value_en": "",
"is_custom_attribute_value": false,
"is_show": 1,
"supplier_id": 0,
"attribute_value_doc": null,
"attribute_value_doc_image_list": null,
"attribute_value_group_list": null
},
{
"attribute_value_id": 1685,
"attribute_value": "",
"attribute_value_en": "",
"is_custom_attribute_value": false,
"is_show": 1,
"supplier_id": 0,
"attribute_value_doc": null,
"attribute_value_doc_image_list": null,
"attribute_value_group_list": null
},
{
"attribute_value_id": 1006488,
"attribute_value": "Chalcedony",
"attribute_value_en": "",
"is_custom_attribute_value": false,
"is_show": 1,
"supplier_id": 0,
"attribute_value_doc": null,
"attribute_value_doc_image_list": null,
"attribute_value_group_list": null
},
{
"attribute_value_id": 1004818,
"attribute_value": "Coconut Shell",
"attribute_value_en": "",
"is_custom_attribute_value": false,
"is_show": 1,
"supplier_id": 0,
"attribute_value_doc": null,
"attribute_value_doc_image_list": null,
"attribute_value_group_list": null
},
{
"attribute_value_id": 875,
"attribute_value": "Copper",
"attribute_value_en": "",
"is_custom_attribute_value": false,
"is_show": 1,
"supplier_id": 0,
"attribute_value_doc": null,
"attribute_value_doc_image_list": null,
"attribute_value_group_list": null
},
{
"attribute_value_id": 1005911,
"attribute_value": "Copper Alloy",
"attribute_value_en": "",
"is_custom_attribute_value": false,
"is_show": 1,
"supplier_id": 0,
"attribute_value_doc": null,
"attribute_value_doc_image_list": null,
"attribute_value_group_list": null
},
{
"attribute_value_id": 1006583,
"attribute_value": "CR39",
"attribute_value_en": "",
"is_custom_attribute_value": false,
"is_show": 1,
"supplier_id": 0,
"attribute_value_doc": null,
"attribute_value_doc_image_list": null,
"attribute_value_group_list": null
},
{
"attribute_value_id": 1698,
"attribute_value": "",
"attribute_value_en": "",
"is_custom_attribute_value": false,
"is_show": 1,
"supplier_id": 0,
"attribute_value_doc": null,
"attribute_value_doc_image_list": null,
"attribute_value_group_list": null
},
{
"attribute_value_id": 1006521,
"attribute_value": "Diamond",
"attribute_value_en": "",
"is_custom_attribute_value": false,
"is_show": 1,
"supplier_id": 0,
"attribute_value_doc": null,
"attribute_value_doc_image_list": null,
"attribute_value_group_list": null
},
{
"attribute_value_id": 2265,
"attribute_value": "",
"attribute_value_en": "",
"is_custom_attribute_value": false,
"is_show": 1,
"supplier_id": 0,
"attribute_value_doc": null,
"attribute_value_doc_image_list": null,
"attribute_value_group_list": null
},
{
"attribute_value_id": 255,
"attribute_value": "Elastane",
"attribute_value_en": "",
"is_custom_attribute_value": false,
"is_show": 1,
"supplier_id": 0,
"attribute_value_doc": null,
"attribute_value_doc_image_list": null,
"attribute_value_group_list": null
},
{
"attribute_value_id": 1103,
"attribute_value": "Elastic",
"attribute_value_en": "",
"is_custom_attribute_value": false,
"is_show": 1,
"supplier_id": 0,
"attribute_value_doc": null,
"attribute_value_doc_image_list": null,
"attribute_value_group_list": null
},
{
"attribute_value_id": 1006502,
"attribute_value": "Emerald",
"attribute_value_en": "",
"is_custom_attribute_value": false,
"is_show": 1,
"supplier_id": 0,
"attribute_value_doc": null,
"attribute_value_doc_image_list": null,
"attribute_value_group_list": null
},
{
"attribute_value_id": 963,
"attribute_value": "EVA",
"attribute_value_en": "",
"is_custom_attribute_value": false,
"is_show": 1,
"supplier_id": 0,
"attribute_value_doc": null,
"attribute_value_doc_image_list": null,
"attribute_value_group_list": null
},
{
"attribute_value_id": 278,
"attribute_value": "Fabric",
"attribute_value_en": "",
"is_custom_attribute_value": false,
"is_show": 1,
"supplier_id": 0,
"attribute_value_doc": null,
"attribute_value_doc_image_list": null,
"attribute_value_group_list": null
},
{
"attribute_value_id": 290,
"attribute_value": "Feather",
"attribute_value_en": "",
"is_custom_attribute_value": false,
"is_show": 1,
"supplier_id": 0,
"attribute_value_doc": null,
"attribute_value_doc_image_list": null,
"attribute_value_group_list": null
},
{
"attribute_value_id": 859,
"attribute_value": "Fiber",
"attribute_value_en": "",
"is_custom_attribute_value": false,
"is_show": 1,
"supplier_id": 0,
"attribute_value_doc": null,
"attribute_value_doc_image_list": null,
"attribute_value_group_list": null
},
{
"attribute_value_id": 1006509,
"attribute_value": "Fluorite",
"attribute_value_en": "",
"is_custom_attribute_value": false,
"is_show": 1,
"supplier_id": 0,
"attribute_value_doc": null,
"attribute_value_doc_image_list": null,
"attribute_value_group_list": null
},
{
"attribute_value_id": 1006508,
"attribute_value": "Garnet",
"attribute_value_en": "",
"is_custom_attribute_value": false,
"is_show": 1,
"supplier_id": 0,
"attribute_value_doc": null,
"attribute_value_doc_image_list": null,
"attribute_value_group_list": null
},
{
"attribute_value_id": 325,
"attribute_value": "Glass",
"attribute_value_en": "",
"is_custom_attribute_value": false,
"is_show": 1,
"supplier_id": 0,
"attribute_value_doc": null,
"attribute_value_doc_image_list": null,
"attribute_value_group_list": null
},
{
"attribute_value_id": 327,
"attribute_value": "Glitter",
"attribute_value_en": "",
"is_custom_attribute_value": false,
"is_show": 1,
"supplier_id": 0,
"attribute_value_doc": null,
"attribute_value_doc_image_list": null,
"attribute_value_group_list": null
},
{
"attribute_value_id": 1005884,
"attribute_value": "Hadfield Steel",
"attribute_value_en": "",
"is_custom_attribute_value": false,
"is_show": 1,
"supplier_id": 0,
"attribute_value_doc": null,
"attribute_value_doc_image_list": null,
"attribute_value_group_list": null
},
{
"attribute_value_id": 1006487,
"attribute_value": "Hematite",
"attribute_value_en": "",
"is_custom_attribute_value": false,
"is_show": 1,
"supplier_id": 0,
"attribute_value_doc": null,
"attribute_value_doc_image_list": null,
"attribute_value_group_list": null
},
{
"attribute_value_id": 1006506,
"attribute_value": "Howlite",
"attribute_value_en": "",
"is_custom_attribute_value": false,
"is_show": 1,
"supplier_id": 0,
"attribute_value_doc": null,
"attribute_value_doc_image_list": null,
"attribute_value_group_list": null
},
{
"attribute_value_id": 1315,
"attribute_value": "",
"attribute_value_en": "",
"is_custom_attribute_value": false,
"is_show": 1,
"supplier_id": 0,
"attribute_value_doc": null,
"attribute_value_doc_image_list": null,
"attribute_value_group_list": null
},
{
"attribute_value_id": 874,
"attribute_value": "Iron",
"attribute_value_en": "",
"is_custom_attribute_value": false,
"is_show": 1,
"supplier_id": 0,
"attribute_value_doc": null,
"attribute_value_doc_image_list": null,
"attribute_value_group_list": null
},
{
"attribute_value_id": 1005910,
"attribute_value": "Iron Alloy",
"attribute_value_en": "",
"is_custom_attribute_value": false,
"is_show": 1,
"supplier_id": 0,
"attribute_value_doc": null,
"attribute_value_doc_image_list": null,
"attribute_value_group_list": null
},
{
"attribute_value_id": 1006489,
"attribute_value": "Jasper",
"attribute_value_en": "",
"is_custom_attribute_value": false,
"is_show": 1,
"supplier_id": 0,
"attribute_value_doc": null,
"attribute_value_doc_image_list": null,
"attribute_value_group_list": null
},
{
"attribute_value_id": 372,
"attribute_value": "Jelly",
"attribute_value_en": "",
"is_custom_attribute_value": false,
"is_show": 1,
"supplier_id": 0,
"attribute_value_doc": null,
"attribute_value_doc_image_list": null,
"attribute_value_group_list": null
},
{
"attribute_value_id": 1006510,
"attribute_value": "Labradorite",
"attribute_value_en": "",
"is_custom_attribute_value": false,
"is_show": 1,
"supplier_id": 0,
"attribute_value_doc": null,
"attribute_value_doc_image_list": null,
"attribute_value_group_list": null
},
{
"attribute_value_id": 1006511,
"attribute_value": "Lapis Lazuli",
"attribute_value_en": "",
"is_custom_attribute_value": false,
"is_show": 1,
"supplier_id": 0,
"attribute_value_doc": null,
"attribute_value_doc_image_list": null,
"attribute_value_group_list": null
},
{
"attribute_value_id": 1365,
"attribute_value": "",
"attribute_value_en": "",
"is_custom_attribute_value": false,
"is_show": 1,
"supplier_id": 0,
"attribute_value_doc": null,
"attribute_value_doc_image_list": null,
"attribute_value_group_list": null
},
{
"attribute_value_id": 1006504,
"attribute_value": "Lava",
"attribute_value_en": "",
"is_custom_attribute_value": false,
"is_show": 1,
"supplier_id": 0,
"attribute_value_doc": null,
"attribute_value_doc_image_list": null,
"attribute_value_group_list": null
},
{
"attribute_value_id": 1001031,
"attribute_value": "en850",
"attribute_value_en": "",
"is_custom_attribute_value": false,
"is_show": 1,
"supplier_id": 0,
"attribute_value_doc": null,
"attribute_value_doc_image_list": null,
"attribute_value_group_list": null
},
{
"attribute_value_id": 1005909,
"attribute_value": "Lead Alloy",
"attribute_value_en": "",
"is_custom_attribute_value": false,
"is_show": 1,
"supplier_id": 0,
"attribute_value_doc": null,
"attribute_value_doc_image_list": null,
"attribute_value_group_list": null
},
{
"attribute_value_id": 1006794,
"attribute_value": "Magnesium Alloy",
"attribute_value_en": "",
"is_custom_attribute_value": false,
"is_show": 1,
"supplier_id": 0,
"attribute_value_doc": null,
"attribute_value_doc_image_list": null,
"attribute_value_group_list": null
},
{
"attribute_value_id": 1142,
"attribute_value": "38.5",
"attribute_value_en": "",
"is_custom_attribute_value": false,
"is_show": 1,
"supplier_id": 0,
"attribute_value_doc": null,
"attribute_value_doc_image_list": null,
"attribute_value_group_list": null
},
{
"attribute_value_id": 1005705,
"attribute_value": "Maize-shuck",
"attribute_value_en": "",
"is_custom_attribute_value": false,
"is_show": 1,
"supplier_id": 0,
"attribute_value_doc": null,
"attribute_value_doc_image_list": null,
"attribute_value_group_list": null
},
{
"attribute_value_id": 1006490,
"attribute_value": "Malachite",
"attribute_value_en": "",
"is_custom_attribute_value": false,
"is_show": 1,
"supplier_id": 0,
"attribute_value_doc": null,
"attribute_value_doc_image_list": null,
"attribute_value_group_list": null
},
{
"attribute_value_id": 1006133,
"attribute_value": "Marble Stone",
"attribute_value_en": "",
"is_custom_attribute_value": false,
"is_show": 1,
"supplier_id": 0,
"attribute_value_doc": null,
"attribute_value_doc_image_list": null,
"attribute_value_group_list": null
},
{
"attribute_value_id": 870,
"attribute_value": "MDF",
"attribute_value_en": "",
"is_custom_attribute_value": false,
"is_show": 1,
"supplier_id": 0,
"attribute_value_doc": null,
"attribute_value_doc_image_list": null,
"attribute_value_group_list": null
},
{
"attribute_value_id": 1004748,
"attribute_value": "Melamine",
"attribute_value_en": "",
"is_custom_attribute_value": false,
"is_show": 1,
"supplier_id": 0,
"attribute_value_doc": null,
"attribute_value_doc_image_list": null,
"attribute_value_group_list": null
},
{
"attribute_value_id": 1000660,
"attribute_value": "en479",
"attribute_value_en": "",
"is_custom_attribute_value": false,
"is_show": 1,
"supplier_id": 0,
"attribute_value_doc": null,
"attribute_value_doc_image_list": null,
"attribute_value_group_list": null
},
{
"attribute_value_id": 1006499,
"attribute_value": "Moonstone",
"attribute_value_en": "",
"is_custom_attribute_value": false,
"is_show": 1,
"supplier_id": 0,
"attribute_value_doc": null,
"attribute_value_doc_image_list": null,
"attribute_value_group_list": null
},
{
"attribute_value_id": 1006512,
"attribute_value": "Morganite",
"attribute_value_en": "",
"is_custom_attribute_value": false,
"is_show": 1,
"supplier_id": 0,
"attribute_value_doc": null,
"attribute_value_doc_image_list": null,
"attribute_value_group_list": null
},
{
"attribute_value_id": 876,
"attribute_value": "Non-woven Fabric",
"attribute_value_en": "",
"is_custom_attribute_value": false,
"is_show": 1,
"supplier_id": 0,
"attribute_value_doc": null,
"attribute_value_doc_image_list": null,
"attribute_value_group_list": null
},
{
"attribute_value_id": 1006494,
"attribute_value": "Obsidian",
"attribute_value_en": "",
"is_custom_attribute_value": false,
"is_show": 1,
"supplier_id": 0,
"attribute_value_doc": null,
"attribute_value_doc_image_list": null,
"attribute_value_group_list": null
},
{
"attribute_value_id": 1006495,
"attribute_value": "Onyx",
"attribute_value_en": "",
"is_custom_attribute_value": false,
"is_show": 1,
"supplier_id": 0,
"attribute_value_doc": null,
"attribute_value_doc_image_list": null,
"attribute_value_group_list": null
},
{
"attribute_value_id": 1005704,
"attribute_value": "Osier",
"attribute_value_en": "",
"is_custom_attribute_value": false,
"is_show": 1,
"supplier_id": 0,
"attribute_value_doc": null,
"attribute_value_doc_image_list": null,
"attribute_value_group_list": null
},
{
"attribute_value_id": 867,
"attribute_value": "Paper",
"attribute_value_en": "",
"is_custom_attribute_value": false,
"is_show": 1,
"supplier_id": 0,
"attribute_value_doc": null,
"attribute_value_doc_image_list": null,
"attribute_value_group_list": null
},
{
"attribute_value_id": 498,
"attribute_value": "PC",
"attribute_value_en": "",
"is_custom_attribute_value": false,
"is_show": 1,
"supplier_id": 0,
"attribute_value_doc": null,
"attribute_value_doc_image_list": null,
"attribute_value_group_list": null
},
{
"attribute_value_id": 904,
"attribute_value": "PE",
"attribute_value_en": "",
"is_custom_attribute_value": false,
"is_show": 1,
"supplier_id": 0,
"attribute_value_doc": null,
"attribute_value_doc_image_list": null,
"attribute_value_group_list": null
},
{
"attribute_value_id": 1006503,
"attribute_value": "Peridot",
"attribute_value_en": "",
"is_custom_attribute_value": false,
"is_show": 1,
"supplier_id": 0,
"attribute_value_doc": null,
"attribute_value_doc_image_list": null,
"attribute_value_group_list": null
},
{
"attribute_value_id": 1115,
"attribute_value": "PET",
"attribute_value_en": "",
"is_custom_attribute_value": false,
"is_show": 1,
"supplier_id": 0,
"attribute_value_doc": null,
"attribute_value_doc_image_list": null,
"attribute_value_group_list": null
},
{
"attribute_value_id": 1026,
"attribute_value": "PEVA",
"attribute_value_en": "",
"is_custom_attribute_value": false,
"is_show": 1,
"supplier_id": 0,
"attribute_value_doc": null,
"attribute_value_doc_image_list": null,
"attribute_value_group_list": null
},
{
"attribute_value_id": 1001972,
"attribute_value": "中台test317",
"attribute_value_en": "",
"is_custom_attribute_value": false,
"is_show": 1,
"supplier_id": 0,
"attribute_value_doc": null,
"attribute_value_doc_image_list": null,
"attribute_value_group_list": null
},
{
"attribute_value_id": 1005883,
"attribute_value": "PMMA",
"attribute_value_en": "",
"is_custom_attribute_value": false,
"is_show": 1,
"supplier_id": 0,
"attribute_value_doc": null,
"attribute_value_doc_image_list": null,
"attribute_value_group_list": null
},
{
"attribute_value_id": 525,
"attribute_value": "Polyamide",
"attribute_value_en": "",
"is_custom_attribute_value": false,
"is_show": 1,
"supplier_id": 0,
"attribute_value_doc": null,
"attribute_value_doc_image_list": null,
"attribute_value_group_list": null
},
{
"attribute_value_id": 526,
"attribute_value": "Polyester",
"attribute_value_en": "",
"is_custom_attribute_value": false,
"is_show": 1,
"supplier_id": 0,
"attribute_value_doc": null,
"attribute_value_doc_image_list": null,
"attribute_value_group_list": null
},
{
"attribute_value_id": 1007850,
"attribute_value": "Polyethylene Fibre",
"attribute_value_en": "",
"is_custom_attribute_value": false,
"is_show": 1,
"supplier_id": 0,
"attribute_value_doc": null,
"attribute_value_doc_image_list": null,
"attribute_value_group_list": null
},
{
"attribute_value_id": 1000897,
"attribute_value": "en716",
"attribute_value_en": "",
"is_custom_attribute_value": false,
"is_show": 1,
"supplier_id": 0,
"attribute_value_doc": null,
"attribute_value_doc_image_list": null,
"attribute_value_group_list": null
},
{
"attribute_value_id": 1004747,
"attribute_value": "Polypropylene",
"attribute_value_en": "",
"is_custom_attribute_value": false,
"is_show": 1,
"supplier_id": 0,
"attribute_value_doc": null,
"attribute_value_doc_image_list": null,
"attribute_value_group_list": null
},
{
"attribute_value_id": 1007849,
"attribute_value": "polyvinyl Chloride Fibre",
"attribute_value_en": "",
"is_custom_attribute_value": false,
"is_show": 1,
"supplier_id": 0,
"attribute_value_doc": null,
"attribute_value_doc_image_list": null,
"attribute_value_group_list": null
},
{
"attribute_value_id": 1321,
"attribute_value": "",
"attribute_value_en": "",
"is_custom_attribute_value": false,
"is_show": 1,
"supplier_id": 0,
"attribute_value_doc": null,
"attribute_value_doc_image_list": null,
"attribute_value_group_list": null
},
{
"attribute_value_id": 855,
"attribute_value": "PP",
"attribute_value_en": "",
"is_custom_attribute_value": false,
"is_show": 1,
"supplier_id": 0,
"attribute_value_doc": null,
"attribute_value_doc_image_list": null,
"attribute_value_group_list": null
},
{
"attribute_value_id": 1005315,
"attribute_value": "PPSU",
"attribute_value_en": "",
"is_custom_attribute_value": false,
"is_show": 1,
"supplier_id": 0,
"attribute_value_doc": null,
"attribute_value_doc_image_list": null,
"attribute_value_group_list": null
},
{
"attribute_value_id": 1006493,
"attribute_value": "Prehnite",
"attribute_value_en": "",
"is_custom_attribute_value": false,
"is_show": 1,
"supplier_id": 0,
"attribute_value_doc": null,
"attribute_value_doc_image_list": null,
"attribute_value_group_list": null
},
{
"attribute_value_id": 856,
"attribute_value": "PS",
"attribute_value_en": "",
"is_custom_attribute_value": false,
"is_show": 1,
"supplier_id": 0,
"attribute_value_doc": null,
"attribute_value_doc_image_list": null,
"attribute_value_group_list": null
},
{
"attribute_value_id": 1000145,
"attribute_value": "DYJ_欧美_EN",
"attribute_value_en": "",
"is_custom_attribute_value": false,
"is_show": 1,
"supplier_id": 0,
"attribute_value_doc": null,
"attribute_value_doc_image_list": null,
"attribute_value_group_list": null
},
{
"attribute_value_id": 532,
"attribute_value": "PU Leather",
"attribute_value_en": "",
"is_custom_attribute_value": false,
"is_show": 1,
"supplier_id": 0,
"attribute_value_doc": null,
"attribute_value_doc_image_list": null,
"attribute_value_group_list": null
},
{
"attribute_value_id": 538,
"attribute_value": "PVC",
"attribute_value_en": "",
"is_custom_attribute_value": false,
"is_show": 1,
"supplier_id": 0,
"attribute_value_doc": null,
"attribute_value_doc_image_list": null,
"attribute_value_group_list": null
},
{
"attribute_value_id": 1007845,
"attribute_value": "PVC Leather",
"attribute_value_en": "",
"is_custom_attribute_value": false,
"is_show": 1,
"supplier_id": 0,
"attribute_value_doc": null,
"attribute_value_doc_image_list": null,
"attribute_value_group_list": null
},
{
"attribute_value_id": 1780,
"attribute_value": "",
"attribute_value_en": "",
"is_custom_attribute_value": false,
"is_show": 1,
"supplier_id": 0,
"attribute_value_doc": null,
"attribute_value_doc_image_list": null,
"attribute_value_group_list": null
},
{
"attribute_value_id": 1006498,
"attribute_value": "Rhodochrosite",
"attribute_value_en": "",
"is_custom_attribute_value": false,
"is_show": 1,
"supplier_id": 0,
"attribute_value_doc": null,
"attribute_value_doc_image_list": null,
"attribute_value_group_list": null
},
{
"attribute_value_id": 563,
"attribute_value": "Rubber",
"attribute_value_en": "",
"is_custom_attribute_value": false,
"is_show": 1,
"supplier_id": 0,
"attribute_value_doc": null,
"attribute_value_doc_image_list": null,
"attribute_value_group_list": null
},
{
"attribute_value_id": 1006500,
"attribute_value": "Ruby",
"attribute_value_en": "",
"is_custom_attribute_value": false,
"is_show": 1,
"supplier_id": 0,
"attribute_value_doc": null,
"attribute_value_doc_image_list": null,
"attribute_value_group_list": null
},
{
"attribute_value_id": 1005696,
"attribute_value": "San",
"attribute_value_en": "",
"is_custom_attribute_value": false,
"is_show": 1,
"supplier_id": 0,
"attribute_value_doc": null,
"attribute_value_doc_image_list": null,
"attribute_value_group_list": null
},
{
"attribute_value_id": 1006501,
"attribute_value": "Sapphire",
"attribute_value_en": "",
"is_custom_attribute_value": false,
"is_show": 1,
"supplier_id": 0,
"attribute_value_doc": null,
"attribute_value_doc_image_list": null,
"attribute_value_group_list": null
},
{
"attribute_value_id": 587,
"attribute_value": "Shell",
"attribute_value_en": "",
"is_custom_attribute_value": false,
"is_show": 1,
"supplier_id": 0,
"attribute_value_doc": null,
"attribute_value_doc_image_list": null,
"attribute_value_group_list": null
},
{
"attribute_value_id": 599,
"attribute_value": "Silicone",
"attribute_value_en": "",
"is_custom_attribute_value": false,
"is_show": 1,
"supplier_id": 0,
"attribute_value_doc": null,
"attribute_value_doc_image_list": null,
"attribute_value_group_list": null
},
{
"attribute_value_id": 868,
"attribute_value": "Stainless Steel",
"attribute_value_en": "",
"is_custom_attribute_value": false,
"is_show": 1,
"supplier_id": 0,
"attribute_value_doc": null,
"attribute_value_doc_image_list": null,
"attribute_value_group_list": null
},
{
"attribute_value_id": 640,
"attribute_value": "Stone",
"attribute_value_en": "",
"is_custom_attribute_value": false,
"is_show": 1,
"supplier_id": 0,
"attribute_value_doc": null,
"attribute_value_doc_image_list": null,
"attribute_value_group_list": null
},
{
"attribute_value_id": 647,
"attribute_value": "Straw",
"attribute_value_en": "",
"is_custom_attribute_value": false,
"is_show": 1,
"supplier_id": 0,
"attribute_value_doc": null,
"attribute_value_doc_image_list": null,
"attribute_value_group_list": null
},
{
"attribute_value_id": 1001654,
"attribute_value": "lzp111001",
"attribute_value_en": "",
"is_custom_attribute_value": false,
"is_show": 1,
"supplier_id": 0,
"attribute_value_doc": null,
"attribute_value_doc_image_list": null,
"attribute_value_group_list": null
},
{
"attribute_value_id": 1003448,
"attribute_value": "Synthetic Rubber",
"attribute_value_en": "",
"is_custom_attribute_value": false,
"is_show": 1,
"supplier_id": 0,
"attribute_value_doc": null,
"attribute_value_doc_image_list": null,
"attribute_value_group_list": null
},
{
"attribute_value_id": 1006582,
"attribute_value": "TAC",
"attribute_value_en": "",
"is_custom_attribute_value": false,
"is_show": 1,
"supplier_id": 0,
"attribute_value_doc": null,
"attribute_value_doc_image_list": null,
"attribute_value_group_list": null
},
{
"attribute_value_id": 1384,
"attribute_value": "",
"attribute_value_en": "",
"is_custom_attribute_value": false,
"is_show": 1,
"supplier_id": 0,
"attribute_value_doc": null,
"attribute_value_doc_image_list": null,
"attribute_value_group_list": null
},
{
"attribute_value_id": 1057,
"attribute_value": "Tempered Glass",
"attribute_value_en": "",
"is_custom_attribute_value": false,
"is_show": 1,
"supplier_id": 0,
"attribute_value_doc": null,
"attribute_value_doc_image_list": null,
"attribute_value_group_list": null
},
{
"attribute_value_id": 1006505,
"attribute_value": "Tiger Eye",
"attribute_value_en": "",
"is_custom_attribute_value": false,
"is_show": 1,
"supplier_id": 0,
"attribute_value_doc": null,
"attribute_value_doc_image_list": null,
"attribute_value_group_list": null
},
{
"attribute_value_id": 1006565,
"attribute_value": "Titanium",
"attribute_value_en": "",
"is_custom_attribute_value": false,
"is_show": 1,
"supplier_id": 0,
"attribute_value_doc": null,
"attribute_value_doc_image_list": null,
"attribute_value_group_list": null
},
{
"attribute_value_id": 1007851,
"attribute_value": "Titanium Alloy",
"attribute_value_en": "",
"is_custom_attribute_value": false,
"is_show": 1,
"supplier_id": 0,
"attribute_value_doc": null,
"attribute_value_doc_image_list": null,
"attribute_value_group_list": null
},
{
"attribute_value_id": 1006491,
"attribute_value": "Tourmaline",
"attribute_value_en": "",
"is_custom_attribute_value": false,
"is_show": 1,
"supplier_id": 0,
"attribute_value_doc": null,
"attribute_value_doc_image_list": null,
"attribute_value_group_list": null
},
{
"attribute_value_id": 1058,
"attribute_value": "TPE",
"attribute_value_en": "",
"is_custom_attribute_value": false,
"is_show": 1,
"supplier_id": 0,
"attribute_value_doc": null,
"attribute_value_doc_image_list": null,
"attribute_value_group_list": null
},
{
"attribute_value_id": 1025,
"attribute_value": "TPR",
"attribute_value_en": "",
"is_custom_attribute_value": false,
"is_show": 1,
"supplier_id": 0,
"attribute_value_doc": null,
"attribute_value_doc_image_list": null,
"attribute_value_group_list": null
},
{
"attribute_value_id": 689,
"attribute_value": "TPU",
"attribute_value_en": "",
"is_custom_attribute_value": false,
"is_show": 1,
"supplier_id": 0,
"attribute_value_doc": null,
"attribute_value_doc_image_list": null,
"attribute_value_group_list": null
},
{
"attribute_value_id": 1000676,
"attribute_value": "en495",
"attribute_value_en": "",
"is_custom_attribute_value": false,
"is_show": 1,
"supplier_id": 0,
"attribute_value_doc": null,
"attribute_value_doc_image_list": null,
"attribute_value_group_list": null
},
{
"attribute_value_id": 1006485,
"attribute_value": "Tungsten Steel",
"attribute_value_en": "",
"is_custom_attribute_value": false,
"is_show": 1,
"supplier_id": 0,
"attribute_value_doc": null,
"attribute_value_doc_image_list": null,
"attribute_value_group_list": null
},
{
"attribute_value_id": 1820,
"attribute_value": "",
"attribute_value_en": "",
"is_custom_attribute_value": false,
"is_show": 1,
"supplier_id": 0,
"attribute_value_doc": null,
"attribute_value_doc_image_list": null,
"attribute_value_group_list": null
},
{
"attribute_value_id": 1005709,
"attribute_value": "White Corundum",
"attribute_value_en": "",
"is_custom_attribute_value": false,
"is_show": 1,
"supplier_id": 0,
"attribute_value_doc": null,
"attribute_value_doc_image_list": null,
"attribute_value_group_list": null
},
{
"attribute_value_id": 746,
"attribute_value": "Wood",
"attribute_value_en": "",
"is_custom_attribute_value": false,
"is_show": 1,
"supplier_id": 0,
"attribute_value_doc": null,
"attribute_value_doc_image_list": null,
"attribute_value_group_list": null
},
{
"attribute_value_id": 869,
"attribute_value": "WPC",
"attribute_value_en": "",
"is_custom_attribute_value": false,
"is_show": 1,
"supplier_id": 0,
"attribute_value_doc": null,
"attribute_value_doc_image_list": null,
"attribute_value_group_list": null
},
{
"attribute_value_id": 1005318,
"attribute_value": "Zinc",
"attribute_value_en": "",
"is_custom_attribute_value": false,
"is_show": 1,
"supplier_id": 0,
"attribute_value_doc": null,
"attribute_value_doc_image_list": null,
"attribute_value_group_list": null
},
{
"attribute_value_id": 1420,
"attribute_value": "",
"attribute_value_en": "",
"is_custom_attribute_value": false,
"is_show": 1,
"supplier_id": 0,
"attribute_value_doc": null,
"attribute_value_doc_image_list": null,
"attribute_value_group_list": null
}
]
},
{
"attribute_id": 1000547,
"attribute_name": "Other Material(不对前台展示)",
"attribute_name_en": "",
"attribute_is_show": 1,
"attribute_source": 1,
"attribute_label": 0,
"attribute_mode": 1,
"data_dimension": 2,
"attribute_status": 2,
"attribute_type": 4,
"business_mode": 13,
"is_sample": 0,
"supplier_id": 0,
"attribute_doc": null,
"attribute_doc_image_list": null,
"attribute_value_info_list": [
{
"attribute_value_id": 62,
"attribute_value": "ABS",
"attribute_value_en": "",
"is_custom_attribute_value": false,
"is_show": 1,
"supplier_id": 0,
"attribute_value_doc": null,
"attribute_value_doc_image_list": null,
"attribute_value_group_list": null
},
{
"attribute_value_id": 63,
"attribute_value": "Acrylic",
"attribute_value_en": "",
"is_custom_attribute_value": false,
"is_show": 1,
"supplier_id": 0,
"attribute_value_doc": null,
"attribute_value_doc_image_list": null,
"attribute_value_group_list": null
},
{
"attribute_value_id": 865,
"attribute_value": "Aluminum",
"attribute_value_en": "",
"is_custom_attribute_value": false,
"is_show": 1,
"supplier_id": 0,
"attribute_value_doc": null,
"attribute_value_doc_image_list": null,
"attribute_value_group_list": null
},
{
"attribute_value_id": 91,
"attribute_value": "",
"attribute_value_en": null,
"is_custom_attribute_value": false,
"is_show": 1,
"supplier_id": 0,
"attribute_value_doc": null,
"attribute_value_doc_image_list": null,
"attribute_value_group_list": null
},
{
"attribute_value_id": 875,
"attribute_value": "Copper",
"attribute_value_en": "",
"is_custom_attribute_value": false,
"is_show": 1,
"supplier_id": 0,
"attribute_value_doc": null,
"attribute_value_doc_image_list": null,
"attribute_value_group_list": null
},
{
"attribute_value_id": 1380,
"attribute_value": "",
"attribute_value_en": "",
"is_custom_attribute_value": false,
"is_show": 1,
"supplier_id": 0,
"attribute_value_doc": null,
"attribute_value_doc_image_list": null,
"attribute_value_group_list": null
},
{
"attribute_value_id": 325,
"attribute_value": "Glass",
"attribute_value_en": "",
"is_custom_attribute_value": false,
"is_show": 1,
"supplier_id": 0,
"attribute_value_doc": null,
"attribute_value_doc_image_list": null,
"attribute_value_group_list": null
},
{
"attribute_value_id": 874,
"attribute_value": "Iron",
"attribute_value_en": "",
"is_custom_attribute_value": false,
"is_show": 1,
"supplier_id": 0,
"attribute_value_doc": null,
"attribute_value_doc_image_list": null,
"attribute_value_group_list": null
},
{
"attribute_value_id": 404,
"attribute_value": "Linen",
"attribute_value_en": "",
"is_custom_attribute_value": false,
"is_show": 1,
"supplier_id": 0,
"attribute_value_doc": null,
"attribute_value_doc_image_list": null,
"attribute_value_group_list": null
},
{
"attribute_value_id": 1006169,
"attribute_value": "No Other Material",
"attribute_value_en": "",
"is_custom_attribute_value": false,
"is_show": 1,
"supplier_id": 0,
"attribute_value_doc": null,
"attribute_value_doc_image_list": null,
"attribute_value_group_list": null
},
{
"attribute_value_id": 876,
"attribute_value": "Non-woven Fabric",
"attribute_value_en": "",
"is_custom_attribute_value": false,
"is_show": 1,
"supplier_id": 0,
"attribute_value_doc": null,
"attribute_value_doc_image_list": null,
"attribute_value_group_list": null
},
{
"attribute_value_id": 466,
"attribute_value": "Nylon",
"attribute_value_en": "",
"is_custom_attribute_value": false,
"is_show": 1,
"supplier_id": 0,
"attribute_value_doc": null,
"attribute_value_doc_image_list": null,
"attribute_value_group_list": null
},
{
"attribute_value_id": 867,
"attribute_value": "Paper",
"attribute_value_en": "",
"is_custom_attribute_value": false,
"is_show": 1,
"supplier_id": 0,
"attribute_value_doc": null,
"attribute_value_doc_image_list": null,
"attribute_value_group_list": null
},
{
"attribute_value_id": 498,
"attribute_value": "PC",
"attribute_value_en": "",
"is_custom_attribute_value": false,
"is_show": 1,
"supplier_id": 0,
"attribute_value_doc": null,
"attribute_value_doc_image_list": null,
"attribute_value_group_list": null
},
{
"attribute_value_id": 904,
"attribute_value": "PE",
"attribute_value_en": "",
"is_custom_attribute_value": false,
"is_show": 1,
"supplier_id": 0,
"attribute_value_doc": null,
"attribute_value_doc_image_list": null,
"attribute_value_group_list": null
},
{
"attribute_value_id": 1115,
"attribute_value": "PET",
"attribute_value_en": "",
"is_custom_attribute_value": false,
"is_show": 1,
"supplier_id": 0,
"attribute_value_doc": null,
"attribute_value_doc_image_list": null,
"attribute_value_group_list": null
},
{
"attribute_value_id": 517,
"attribute_value": "Plastic",
"attribute_value_en": "",
"is_custom_attribute_value": false,
"is_show": 1,
"supplier_id": 0,
"attribute_value_doc": null,
"attribute_value_doc_image_list": null,
"attribute_value_group_list": null
},
{
"attribute_value_id": 526,
"attribute_value": "Polyester",
"attribute_value_en": "",
"is_custom_attribute_value": false,
"is_show": 1,
"supplier_id": 0,
"attribute_value_doc": null,
"attribute_value_doc_image_list": null,
"attribute_value_group_list": null
},
{
"attribute_value_id": 873,
"attribute_value": "Resin",
"attribute_value_en": "",
"is_custom_attribute_value": false,
"is_show": 1,
"supplier_id": 0,
"attribute_value_doc": null,
"attribute_value_doc_image_list": null,
"attribute_value_group_list": null
},
{
"attribute_value_id": 855,
"attribute_value": "PP",
"attribute_value_en": "",
"is_custom_attribute_value": false,
"is_show": 1,
"supplier_id": 0,
"attribute_value_doc": null,
"attribute_value_doc_image_list": null,
"attribute_value_group_list": null
},
{
"attribute_value_id": 856,
"attribute_value": "PS",
"attribute_value_en": "",
"is_custom_attribute_value": false,
"is_show": 1,
"supplier_id": 0,
"attribute_value_doc": null,
"attribute_value_doc_image_list": null,
"attribute_value_group_list": null
},
{
"attribute_value_id": 532,
"attribute_value": "PU Leather",
"attribute_value_en": "",
"is_custom_attribute_value": false,
"is_show": 1,
"supplier_id": 0,
"attribute_value_doc": null,
"attribute_value_doc_image_list": null,
"attribute_value_group_list": null
},
{
"attribute_value_id": 538,
"attribute_value": "PVC",
"attribute_value_en": "",
"is_custom_attribute_value": false,
"is_show": 1,
"supplier_id": 0,
"attribute_value_doc": null,
"attribute_value_doc_image_list": null,
"attribute_value_group_list": null
},
{
"attribute_value_id": 1780,
"attribute_value": "",
"attribute_value_en": "",
"is_custom_attribute_value": false,
"is_show": 1,
"supplier_id": 0,
"attribute_value_doc": null,
"attribute_value_doc_image_list": null,
"attribute_value_group_list": null
},
{
"attribute_value_id": 573,
"attribute_value": "Satin",
"attribute_value_en": "",
"is_custom_attribute_value": false,
"is_show": 1,
"supplier_id": 0,
"attribute_value_doc": null,
"attribute_value_doc_image_list": null,
"attribute_value_group_list": null
},
{
"attribute_value_id": 599,
"attribute_value": "Silicone",
"attribute_value_en": "",
"is_custom_attribute_value": false,
"is_show": 1,
"supplier_id": 0,
"attribute_value_doc": null,
"attribute_value_doc_image_list": null,
"attribute_value_group_list": null
},
{
"attribute_value_id": 868,
"attribute_value": "Stainless Steel",
"attribute_value_en": "",
"is_custom_attribute_value": false,
"is_show": 1,
"supplier_id": 0,
"attribute_value_doc": null,
"attribute_value_doc_image_list": null,
"attribute_value_group_list": null
},
{
"attribute_value_id": 1057,
"attribute_value": "Tempered Glass",
"attribute_value_en": "",
"is_custom_attribute_value": false,
"is_show": 1,
"supplier_id": 0,
"attribute_value_doc": null,
"attribute_value_doc_image_list": null,
"attribute_value_group_list": null
},
{
"attribute_value_id": 1058,
"attribute_value": "TPE",
"attribute_value_en": "",
"is_custom_attribute_value": false,
"is_show": 1,
"supplier_id": 0,
"attribute_value_doc": null,
"attribute_value_doc_image_list": null,
"attribute_value_group_list": null
},
{
"attribute_value_id": 689,
"attribute_value": "TPU",
"attribute_value_en": "",
"is_custom_attribute_value": false,
"is_show": 1,
"supplier_id": 0,
"attribute_value_doc": null,
"attribute_value_doc_image_list": null,
"attribute_value_group_list": null
},
{
"attribute_value_id": 1000676,
"attribute_value": "en495",
"attribute_value_en": "",
"is_custom_attribute_value": false,
"is_show": 1,
"supplier_id": 0,
"attribute_value_doc": null,
"attribute_value_doc_image_list": null,
"attribute_value_group_list": null
},
{
"attribute_value_id": 727,
"attribute_value": "Velvet",
"attribute_value_en": "",
"is_custom_attribute_value": false,
"is_show": 1,
"supplier_id": 0,
"attribute_value_doc": null,
"attribute_value_doc_image_list": null,
"attribute_value_group_list": null
},
{
"attribute_value_id": 746,
"attribute_value": "Wood",
"attribute_value_en": "",
"is_custom_attribute_value": false,
"is_show": 1,
"supplier_id": 0,
"attribute_value_doc": null,
"attribute_value_doc_image_list": null,
"attribute_value_group_list": null
},
{
"attribute_value_id": 1420,
"attribute_value": "",
"attribute_value_en": "",
"is_custom_attribute_value": false,
"is_show": 1,
"supplier_id": 0,
"attribute_value_doc": null,
"attribute_value_doc_image_list": null,
"attribute_value_group_list": null
}
]
},
{
"attribute_id": 1000100,
"attribute_name": "DYJ_袖型_公_普_下单_EN",
"attribute_name_en": "",
"attribute_is_show": 1,
"attribute_source": 1,
"attribute_label": 0,
"attribute_mode": 3,
"data_dimension": 1,
"attribute_status": 2,
"attribute_type": 4,
"business_mode": 13,
"is_sample": 0,
"supplier_id": 0,
"attribute_doc": null,
"attribute_doc_image_list": null,
"attribute_value_info_list": [
{
"attribute_value_id": 1001856,
"attribute_value": "中台test201",
"attribute_value_en": "",
"is_custom_attribute_value": false,
"is_show": 1,
"supplier_id": 0,
"attribute_value_doc": null,
"attribute_value_doc_image_list": null,
"attribute_value_group_list": null
},
{
"attribute_value_id": 1001855,
"attribute_value": "中台test200",
"attribute_value_en": "",
"is_custom_attribute_value": false,
"is_show": 1,
"supplier_id": 0,
"attribute_value_doc": null,
"attribute_value_doc_image_list": null,
"attribute_value_group_list": null
},
{
"attribute_value_id": 1001857,
"attribute_value": "伸縮性ウェスト",
"attribute_value_en": "",
"is_custom_attribute_value": false,
"is_show": 1,
"supplier_id": 0,
"attribute_value_doc": null,
"attribute_value_doc_image_list": null,
"attribute_value_group_list": null
},
{
"attribute_value_id": 1625,
"attribute_value": "",
"attribute_value_en": "",
"is_custom_attribute_value": false,
"is_show": 1,
"supplier_id": 0,
"attribute_value_doc": null,
"attribute_value_doc_image_list": null,
"attribute_value_group_list": null
},
{
"attribute_value_id": 1001854,
"attribute_value": "中台test199",
"attribute_value_en": "",
"is_custom_attribute_value": false,
"is_show": 1,
"supplier_id": 0,
"attribute_value_doc": null,
"attribute_value_doc_image_list": null,
"attribute_value_group_list": null
}
]
},
{
"attribute_id": 1000099,
"attribute_name": "DYJ_领型_公_普_下多_EN",
"attribute_name_en": "",
"attribute_is_show": 1,
"attribute_source": 1,
"attribute_label": 0,
"attribute_mode": 1,
"data_dimension": 1,
"attribute_status": 2,
"attribute_type": 4,
"business_mode": 13,
"is_sample": 0,
"supplier_id": 0,
"attribute_doc": null,
"attribute_doc_image_list": null,
"attribute_value_info_list": [
{
"attribute_value_id": 1001851,
"attribute_value": "Ivory",
"attribute_value_en": "",
"is_custom_attribute_value": false,
"is_show": 1,
"supplier_id": 0,
"attribute_value_doc": null,
"attribute_value_doc_image_list": null,
"attribute_value_group_list": null
},
{
"attribute_value_id": 1001250,
"attribute_value": "en1069",
"attribute_value_en": "",
"is_custom_attribute_value": false,
"is_show": 1,
"supplier_id": 0,
"attribute_value_doc": null,
"attribute_value_doc_image_list": null,
"attribute_value_group_list": null
},
{
"attribute_value_id": 1001852,
"attribute_value": "中台test197",
"attribute_value_en": "",
"is_custom_attribute_value": false,
"is_show": 1,
"supplier_id": 0,
"attribute_value_doc": null,
"attribute_value_doc_image_list": null,
"attribute_value_group_list": null
},
{
"attribute_value_id": 1001853,
"attribute_value": "Gold",
"attribute_value_en": "",
"is_custom_attribute_value": false,
"is_show": 1,
"supplier_id": 0,
"attribute_value_doc": null,
"attribute_value_doc_image_list": null,
"attribute_value_group_list": null
}
]
},
{
"attribute_id": 1000088,
"attribute_name": "DYJ_002_公共_颜色属性_下拉单选_颜色1",
"attribute_name_en": "",
"attribute_is_show": 1,
"attribute_source": 1,
"attribute_label": 0,
"attribute_mode": 3,
"data_dimension": 1,
"attribute_status": 2,
"attribute_type": 1,
"business_mode": 13,
"is_sample": 0,
"supplier_id": 0,
"attribute_doc": null,
"attribute_doc_image_list": null,
"attribute_value_info_list": [
{
"attribute_value_id": 1001532,
"attribute_value": "Mini",
"attribute_value_en": "",
"is_custom_attribute_value": false,
"is_show": 1,
"supplier_id": 0,
"attribute_value_doc": null,
"attribute_value_doc_image_list": null,
"attribute_value_group_list": null
},
{
"attribute_value_id": 1001531,
"attribute_value": "170",
"attribute_value_en": "",
"is_custom_attribute_value": false,
"is_show": 1,
"supplier_id": 0,
"attribute_value_doc": null,
"attribute_value_doc_image_list": null,
"attribute_value_group_list": null
},
{
"attribute_value_id": 1000507,
"attribute_value": "en326",
"attribute_value_en": "",
"is_custom_attribute_value": false,
"is_show": 1,
"supplier_id": 0,
"attribute_value_doc": null,
"attribute_value_doc_image_list": null,
"attribute_value_group_list": null
}
]
},
{
"attribute_id": 8,
"attribute_name": "Battery",
"attribute_name_en": "",
"attribute_is_show": 1,
"attribute_source": 1,
"attribute_label": 0,
"attribute_mode": 3,
"data_dimension": 1,
"attribute_status": 3,
"attribute_type": 4,
"business_mode": 13,
"is_sample": 0,
"supplier_id": 0,
"attribute_doc": null,
"attribute_doc_image_list": null,
"attribute_value_info_list": [
{
"attribute_value_id": 459,
"attribute_value": "No",
"attribute_value_en": "",
"is_custom_attribute_value": false,
"is_show": 1,
"supplier_id": 0,
"attribute_value_doc": null,
"attribute_value_doc_image_list": null,
"attribute_value_group_list": null
},
{
"attribute_value_id": 763,
"attribute_value": "Yes",
"attribute_value_en": "",
"is_custom_attribute_value": false,
"is_show": 1,
"supplier_id": 0,
"attribute_value_doc": null,
"attribute_value_doc_image_list": null,
"attribute_value_group_list": null
}
]
},
{
"attribute_id": 167,
"attribute_name": "ceishi1111",
"attribute_name_en": "",
"attribute_is_show": 1,
"attribute_source": 1,
"attribute_label": 0,
"attribute_mode": 0,
"data_dimension": 2,
"attribute_status": 2,
"attribute_type": 2,
"business_mode": 13,
"is_sample": 0,
"supplier_id": 0,
"attribute_doc": null,
"attribute_doc_image_list": null,
"attribute_value_info_list": []
},
{
"attribute_id": 1000411,
"attribute_name": "Quantity",
"attribute_name_en": "",
"attribute_is_show": 1,
"attribute_source": 2,
"attribute_label": 0,
"attribute_mode": 4,
"data_dimension": 2,
"attribute_status": 3,
"attribute_type": 4,
"business_mode": 13,
"is_sample": 0,
"supplier_id": 0,
"attribute_doc": null,
"attribute_doc_image_list": null,
"attribute_value_info_list": [
{
"attribute_value_id": 1002333,
"attribute_value": "棉布网眼刺绣",
"attribute_value_en": "",
"is_custom_attribute_value": false,
"is_show": 1,
"supplier_id": 0,
"attribute_value_doc": null,
"attribute_value_doc_image_list": null,
"attribute_value_group_list": null
},
{
"attribute_value_id": 1002451,
"attribute_value": "Flax",
"attribute_value_en": "",
"is_custom_attribute_value": false,
"is_show": 1,
"supplier_id": 0,
"attribute_value_doc": null,
"attribute_value_doc_image_list": null,
"attribute_value_group_list": null
}
]
},
{
"attribute_id": 1000101,
"attribute_name": "DYJ_裤型_公_普_下单_EN",
"attribute_name_en": "",
"attribute_is_show": 1,
"attribute_source": 1,
"attribute_label": 0,
"attribute_mode": 3,
"data_dimension": 1,
"attribute_status": 2,
"attribute_type": 4,
"business_mode": 13,
"is_sample": 0,
"supplier_id": 0,
"attribute_doc": null,
"attribute_doc_image_list": null,
"attribute_value_info_list": [
{
"attribute_value_id": 1001858,
"attribute_value": "中台test203",
"attribute_value_en": "",
"is_custom_attribute_value": false,
"is_show": 1,
"supplier_id": 0,
"attribute_value_doc": null,
"attribute_value_doc_image_list": null,
"attribute_value_group_list": null
},
{
"attribute_value_id": 1001860,
"attribute_value": "中台test205",
"attribute_value_en": "",
"is_custom_attribute_value": false,
"is_show": 1,
"supplier_id": 0,
"attribute_value_doc": null,
"attribute_value_doc_image_list": null,
"attribute_value_group_list": null
},
{
"attribute_value_id": 1001859,
"attribute_value": "中台test204",
"attribute_value_en": "",
"is_custom_attribute_value": false,
"is_show": 1,
"supplier_id": 0,
"attribute_value_doc": null,
"attribute_value_doc_image_list": null,
"attribute_value_group_list": null
}
]
},
{
"attribute_id": 55,
"attribute_name": "Length (cm)",
"attribute_name_en": "",
"attribute_is_show": 1,
"attribute_source": 1,
"attribute_label": 0,
"attribute_mode": 0,
"data_dimension": 2,
"attribute_status": 2,
"attribute_type": 2,
"business_mode": 13,
"is_sample": 0,
"supplier_id": 0,
"attribute_doc": null,
"attribute_doc_image_list": null,
"attribute_value_info_list": []
},
{
"attribute_id": 118,
"attribute_name": "Width (cm)",
"attribute_name_en": "",
"attribute_is_show": 1,
"attribute_source": 1,
"attribute_label": 0,
"attribute_mode": 0,
"data_dimension": 2,
"attribute_status": 2,
"attribute_type": 2,
"business_mode": 13,
"is_sample": 0,
"supplier_id": 0,
"attribute_doc": null,
"attribute_doc_image_list": null,
"attribute_value_info_list": []
},
{
"attribute_id": 48,
"attribute_name": "Height (cm) 哦哦",
"attribute_name_en": "",
"attribute_is_show": 1,
"attribute_source": 1,
"attribute_label": 0,
"attribute_mode": 0,
"data_dimension": 2,
"attribute_status": 2,
"attribute_type": 2,
"business_mode": 13,
"is_sample": 0,
"supplier_id": 0,
"attribute_doc": null,
"attribute_doc_image_list": null,
"attribute_value_info_list": []
},
{
"attribute_id": 164,
"attribute_name": "Functiontest3311",
"attribute_name_en": "",
"attribute_is_show": 1,
"attribute_source": 1,
"attribute_label": 0,
"attribute_mode": 1,
"data_dimension": 1,
"attribute_status": 2,
"attribute_type": 4,
"business_mode": 13,
"is_sample": 0,
"supplier_id": 0,
"attribute_doc": null,
"attribute_doc_image_list": null,
"attribute_value_info_list": [
{
"attribute_value_id": 0,
"attribute_value": "",
"attribute_value_en": null,
"is_custom_attribute_value": false,
"is_show": 1,
"supplier_id": 0,
"attribute_value_doc": null,
"attribute_value_doc_image_list": null,
"attribute_value_group_list": null
}
]
},
{
"attribute_id": 32,
"attribute_name": "Diameter (cm)",
"attribute_name_en": "",
"attribute_is_show": 1,
"attribute_source": 1,
"attribute_label": 0,
"attribute_mode": 0,
"data_dimension": 2,
"attribute_status": 2,
"attribute_type": 2,
"business_mode": 13,
"is_sample": 0,
"supplier_id": 0,
"attribute_doc": null,
"attribute_doc_image_list": null,
"attribute_value_info_list": []
},
{
"attribute_id": 1000407,
"attribute_name": "关税种类",
"attribute_name_en": "",
"attribute_is_show": 1,
"attribute_source": 1,
"attribute_label": 0,
"attribute_mode": 3,
"data_dimension": 1,
"attribute_status": 3,
"attribute_type": 4,
"business_mode": 13,
"is_sample": 0,
"supplier_id": 0,
"attribute_doc": null,
"attribute_doc_image_list": null,
"attribute_value_info_list": [
{
"attribute_value_id": 1005244,
"attribute_value": "Unspecified Tariff Type",
"attribute_value_en": "",
"is_custom_attribute_value": false,
"is_show": 1,
"supplier_id": 0,
"attribute_value_doc": null,
"attribute_value_doc_image_list": null,
"attribute_value_group_list": null
},
{
"attribute_value_id": 1004236,
"attribute_value": "Earplugs",
"attribute_value_en": "",
"is_custom_attribute_value": false,
"is_show": 1,
"supplier_id": 0,
"attribute_value_doc": null,
"attribute_value_doc_image_list": null,
"attribute_value_group_list": null
},
{
"attribute_value_id": 1003736,
"attribute_value": "Headphone Protective Cover",
"attribute_value_en": "",
"is_custom_attribute_value": false,
"is_show": 1,
"supplier_id": 0,
"attribute_value_doc": null,
"attribute_value_doc_image_list": null,
"attribute_value_group_list": null
}
]
},
{
"attribute_id": 1000062,
"attribute_name": "织造方式",
"attribute_name_en": "",
"attribute_is_show": 1,
"attribute_source": 1,
"attribute_label": 0,
"attribute_mode": 3,
"data_dimension": 2,
"attribute_status": 2,
"attribute_type": 4,
"business_mode": 13,
"is_sample": 0,
"supplier_id": 0,
"attribute_doc": null,
"attribute_doc_image_list": null,
"attribute_value_info_list": [
{
"attribute_value_id": 1000915,
"attribute_value": "en734",
"attribute_value_en": "",
"is_custom_attribute_value": false,
"is_show": 1,
"supplier_id": 0,
"attribute_value_doc": null,
"attribute_value_doc_image_list": null,
"attribute_value_group_list": null
},
{
"attribute_value_id": 1000916,
"attribute_value": "en735",
"attribute_value_en": "",
"is_custom_attribute_value": false,
"is_show": 1,
"supplier_id": 0,
"attribute_value_doc": null,
"attribute_value_doc_image_list": null,
"attribute_value_group_list": null
},
{
"attribute_value_id": 1000918,
"attribute_value": "en737",
"attribute_value_en": "",
"is_custom_attribute_value": false,
"is_show": 1,
"supplier_id": 0,
"attribute_value_doc": null,
"attribute_value_doc_image_list": null,
"attribute_value_group_list": null
},
{
"attribute_value_id": 1000919,
"attribute_value": "en738",
"attribute_value_en": "",
"is_custom_attribute_value": false,
"is_show": 1,
"supplier_id": 0,
"attribute_value_doc": null,
"attribute_value_doc_image_list": null,
"attribute_value_group_list": null
},
{
"attribute_value_id": 1004567,
"attribute_value": "Nonwoven",
"attribute_value_en": "",
"is_custom_attribute_value": false,
"is_show": 1,
"supplier_id": 0,
"attribute_value_doc": null,
"attribute_value_doc_image_list": null,
"attribute_value_group_list": null
},
{
"attribute_value_id": 1004569,
"attribute_value": "Felt",
"attribute_value_en": "",
"is_custom_attribute_value": false,
"is_show": 1,
"supplier_id": 0,
"attribute_value_doc": null,
"attribute_value_doc_image_list": null,
"attribute_value_group_list": null
},
{
"attribute_value_id": 1004572,
"attribute_value": "Mesh Knitting",
"attribute_value_en": "",
"is_custom_attribute_value": false,
"is_show": 1,
"supplier_id": 0,
"attribute_value_doc": null,
"attribute_value_doc_image_list": null,
"attribute_value_group_list": null
},
{
"attribute_value_id": 1007840,
"attribute_value": "Knitwear",
"attribute_value_en": "",
"is_custom_attribute_value": false,
"is_show": 1,
"supplier_id": 0,
"attribute_value_doc": null,
"attribute_value_doc_image_list": null,
"attribute_value_group_list": null
}
]
},
{
"attribute_id": 1000616,
"attribute_name": "cheney测试",
"attribute_name_en": "",
"attribute_is_show": 1,
"attribute_source": 1,
"attribute_label": 0,
"attribute_mode": 1,
"data_dimension": 1,
"attribute_status": 3,
"attribute_type": 4,
"business_mode": 13,
"is_sample": 0,
"supplier_id": 0,
"attribute_doc": null,
"attribute_doc_image_list": null,
"attribute_value_info_list": [
{
"attribute_value_id": 1006920,
"attribute_value": "Wi-Fi(No Wi-Fi Alliance Certified)",
"attribute_value_en": "",
"is_custom_attribute_value": false,
"is_show": 1,
"supplier_id": 0,
"attribute_value_doc": null,
"attribute_value_doc_image_list": null,
"attribute_value_group_list": null
},
{
"attribute_value_id": 1006919,
"attribute_value": "Wi-Fi(Wi-Fi Alliance Certified)",
"attribute_value_en": "",
"is_custom_attribute_value": false,
"is_show": 1,
"supplier_id": 0,
"attribute_value_doc": null,
"attribute_value_doc_image_list": null,
"attribute_value_group_list": null
},
{
"attribute_value_id": 1006926,
"attribute_value": "Includes Built-In Laser",
"attribute_value_en": "",
"is_custom_attribute_value": false,
"is_show": 1,
"supplier_id": 0,
"attribute_value_doc": null,
"attribute_value_doc_image_list": null,
"attribute_value_group_list": null
},
{
"attribute_value_id": 1006928,
"attribute_value": "Includes Wireless Charging Capabilities",
"attribute_value_en": "",
"is_custom_attribute_value": false,
"is_show": 1,
"supplier_id": 0,
"attribute_value_doc": null,
"attribute_value_doc_image_list": null,
"attribute_value_group_list": null
},
{
"attribute_value_id": 1006927,
"attribute_value": "Includes Wired Charging Capabilities",
"attribute_value_en": "",
"is_custom_attribute_value": false,
"is_show": 1,
"supplier_id": 0,
"attribute_value_doc": null,
"attribute_value_doc_image_list": null,
"attribute_value_group_list": null
},
{
"attribute_value_id": 1006923,
"attribute_value": "Cellular Network",
"attribute_value_en": "",
"is_custom_attribute_value": false,
"is_show": 1,
"supplier_id": 0,
"attribute_value_doc": null,
"attribute_value_doc_image_list": null,
"attribute_value_group_list": null
},
{
"attribute_value_id": 1006922,
"attribute_value": "Bluetooth (No Bqb Certified)",
"attribute_value_en": "",
"is_custom_attribute_value": false,
"is_show": 1,
"supplier_id": 0,
"attribute_value_doc": null,
"attribute_value_doc_image_list": null,
"attribute_value_group_list": null
},
{
"attribute_value_id": 1006921,
"attribute_value": "Bluetooth (Bqb Certified)",
"attribute_value_en": "",
"is_custom_attribute_value": false,
"is_show": 1,
"supplier_id": 0,
"attribute_value_doc": null,
"attribute_value_doc_image_list": null,
"attribute_value_group_list": null
},
{
"attribute_value_id": 1006925,
"attribute_value": "Antibacterial (kills bacteria through chemical means)",
"attribute_value_en": "",
"is_custom_attribute_value": false,
"is_show": 1,
"supplier_id": 0,
"attribute_value_doc": null,
"attribute_value_doc_image_list": null,
"attribute_value_group_list": null
},
{
"attribute_value_id": 1006924,
"attribute_value": "Antibacterial (Kills Bacteria Through Physical Means)",
"attribute_value_en": "",
"is_custom_attribute_value": false,
"is_show": 1,
"supplier_id": 0,
"attribute_value_doc": null,
"attribute_value_doc_image_list": null,
"attribute_value_group_list": null
},
{
"attribute_value_id": 1004580,
"attribute_value": "None",
"attribute_value_en": "",
"is_custom_attribute_value": false,
"is_show": 1,
"supplier_id": 0,
"attribute_value_doc": null,
"attribute_value_doc_image_list": null,
"attribute_value_group_list": null
},
{
"attribute_value_id": 1706728,
"attribute_value": "AC Output Function",
"attribute_value_en": "",
"is_custom_attribute_value": false,
"is_show": 1,
"supplier_id": 0,
"attribute_value_doc": null,
"attribute_value_doc_image_list": null,
"attribute_value_group_list": null
},
{
"attribute_value_id": 1010539,
"attribute_value": "Fast Charging",
"attribute_value_en": "",
"is_custom_attribute_value": false,
"is_show": 1,
"supplier_id": 0,
"attribute_value_doc": null,
"attribute_value_doc_image_list": null,
"attribute_value_group_list": null
}
]
},
{
"attribute_id": 1000462,
"attribute_name": "敏感类别",
"attribute_name_en": "",
"attribute_is_show": 1,
"attribute_source": 1,
"attribute_label": 0,
"attribute_mode": 1,
"data_dimension": 1,
"attribute_status": 3,
"attribute_type": 4,
"business_mode": 13,
"is_sample": 0,
"supplier_id": 0,
"attribute_doc": null,
"attribute_doc_image_list": null,
"attribute_value_info_list": [
{
"attribute_value_id": 1006206,
"attribute_value": "Others (Non-Transport Sensitive Items)",
"attribute_value_en": "",
"is_custom_attribute_value": false,
"is_show": 1,
"supplier_id": 0,
"attribute_value_doc": null,
"attribute_value_doc_image_list": null,
"attribute_value_group_list": null
},
{
"attribute_value_id": 1004811,
"attribute_value": "Magnetic",
"attribute_value_en": "",
"is_custom_attribute_value": false,
"is_show": 1,
"supplier_id": 0,
"attribute_value_doc": null,
"attribute_value_doc_image_list": null,
"attribute_value_group_list": null
},
{
"attribute_value_id": 1004804,
"attribute_value": "Contains Dry Batteries",
"attribute_value_en": "",
"is_custom_attribute_value": false,
"is_show": 1,
"supplier_id": 0,
"attribute_value_doc": null,
"attribute_value_doc_image_list": null,
"attribute_value_group_list": null
},
{
"attribute_value_id": 1004803,
"attribute_value": "Contains Lithium-Ion Battery",
"attribute_value_en": "",
"is_custom_attribute_value": false,
"is_show": 1,
"supplier_id": 0,
"attribute_value_doc": null,
"attribute_value_doc_image_list": null,
"attribute_value_group_list": null
},
{
"attribute_value_id": 1004805,
"attribute_value": "Containing Nickel Metal Hydride Battery",
"attribute_value_en": "",
"is_custom_attribute_value": false,
"is_show": 1,
"supplier_id": 0,
"attribute_value_doc": null,
"attribute_value_doc_image_list": null,
"attribute_value_group_list": null
},
{
"attribute_value_id": 1015686,
"attribute_value": "Lithium Metal Batteries",
"attribute_value_en": "",
"is_custom_attribute_value": false,
"is_show": 1,
"supplier_id": 0,
"attribute_value_doc": null,
"attribute_value_doc_image_list": null,
"attribute_value_group_list": null
},
{
"attribute_value_id": 1015687,
"attribute_value": "Sodium-Ion Batteries",
"attribute_value_en": "",
"is_custom_attribute_value": false,
"is_show": 1,
"supplier_id": 0,
"attribute_value_doc": null,
"attribute_value_doc_image_list": null,
"attribute_value_group_list": null
},
{
"attribute_value_id": 1006828,
"attribute_value": "Lead-Acid Batteries",
"attribute_value_en": "",
"is_custom_attribute_value": false,
"is_show": 1,
"supplier_id": 0,
"attribute_value_doc": null,
"attribute_value_doc_image_list": null,
"attribute_value_group_list": null
},
{
"attribute_value_id": 1004812,
"attribute_value": "Contains Gas",
"attribute_value_en": "",
"is_custom_attribute_value": false,
"is_show": 1,
"supplier_id": 0,
"attribute_value_doc": null,
"attribute_value_doc_image_list": null,
"attribute_value_group_list": null
},
{
"attribute_value_id": 1004807,
"attribute_value": "Contains Liquid",
"attribute_value_en": "",
"is_custom_attribute_value": false,
"is_show": 1,
"supplier_id": 0,
"attribute_value_doc": null,
"attribute_value_doc_image_list": null,
"attribute_value_group_list": null
},
{
"attribute_value_id": 1004808,
"attribute_value": "Containing Paste",
"attribute_value_en": "",
"is_custom_attribute_value": false,
"is_show": 1,
"supplier_id": 0,
"attribute_value_doc": null,
"attribute_value_doc_image_list": null,
"attribute_value_group_list": null
},
{
"attribute_value_id": 1004809,
"attribute_value": "Contains Powder",
"attribute_value_en": "",
"is_custom_attribute_value": false,
"is_show": 1,
"supplier_id": 0,
"attribute_value_doc": null,
"attribute_value_doc_image_list": null,
"attribute_value_group_list": null
},
{
"attribute_value_id": 1004810,
"attribute_value": "Contains Particles",
"attribute_value_en": "",
"is_custom_attribute_value": false,
"is_show": 1,
"supplier_id": 0,
"attribute_value_doc": null,
"attribute_value_doc_image_list": null,
"attribute_value_group_list": null
},
{
"attribute_value_id": 1087445,
"attribute_value": "Contains Flammable Solids",
"attribute_value_en": "",
"is_custom_attribute_value": false,
"is_show": 1,
"supplier_id": 0,
"attribute_value_doc": null,
"attribute_value_doc_image_list": null,
"attribute_value_group_list": null
},
{
"attribute_value_id": 1202192,
"attribute_value": "Knives (Unregulated)",
"attribute_value_en": "",
"is_custom_attribute_value": false,
"is_show": 1,
"supplier_id": 0,
"attribute_value_doc": null,
"attribute_value_doc_image_list": null,
"attribute_value_group_list": null
},
{
"attribute_value_id": 1405557,
"attribute_value": "Nickel-Cadmium Battery",
"attribute_value_en": "",
"is_custom_attribute_value": false,
"is_show": 1,
"supplier_id": 0,
"attribute_value_doc": null,
"attribute_value_doc_image_list": null,
"attribute_value_group_list": null
}
]
},
{
"attribute_id": 1000546,
"attribute_name": "型号(关务)",
"attribute_name_en": "",
"attribute_is_show": 1,
"attribute_source": 2,
"attribute_label": 0,
"attribute_mode": 0,
"data_dimension": 1,
"attribute_status": 2,
"attribute_type": 4,
"business_mode": 13,
"is_sample": 0,
"supplier_id": 0,
"attribute_doc": null,
"attribute_doc_image_list": null,
"attribute_value_info_list": []
},
{
"attribute_id": 1000186,
"attribute_name": "前台尺寸-回推1必-私1",
"attribute_name_en": "",
"attribute_is_show": 1,
"attribute_source": 2,
"attribute_label": 0,
"attribute_mode": 0,
"data_dimension": 2,
"attribute_status": 2,
"attribute_type": 2,
"business_mode": 13,
"is_sample": 0,
"supplier_id": 0,
"attribute_doc": null,
"attribute_doc_image_list": null,
"attribute_value_info_list": []
}
],
"attribute_id": [
87,
27,
1000624,
160,
1000547,
1000100,
1000099,
1000088,
8,
167,
1000411,
1000101,
55,
118,
48,
164,
32,
1000407,
1000062,
1000616,
1000462,
1000546,
1000186
]
}
],
"meta": {
"count": 1,
"customObj": null
}
},
"bbl": null
}
From the response we can see that we have some common information about an attribute and that is :
attribute_id | long | attribute id |
---|---|---|
attribute_is_show | int64 | 1: Display; 0: Do not display |
attribute_label | int64 | Property ID. 1: Main sales logo 0: No |
attribute_mode | int64 | Attribute entry method. 0: Manually fill in parameters; 1: Drop-down list selection (multiple selections possible); 2: Sales attribute exclusive (only for sales attributes, drop-down list selection); 3: Drop-down list selection (single selection); 4: Drop-down list + manual parameters /Attribute entry method. 0: fill in the parameters manually; 1: drop-down list selection (multiple selections); 2: Exclusive to sales attributes (only for sales attributes, select from the drop-down list); 3: drop- down list selection (single selection); 4: drop-down list + manual parameters |
attribute_name | string | Property name |
attribute_source | int64 | Property source. 1: Public attributes 2: Private attributes |
attribute_status | int64 | Peripheral input method 1: Peripheral blank; 2: Peripheral optional; 3: Peripheral required |
This indicates wether the attribute is requried - 3 means required 1 and 2 means not required | | attribute_type | int64 | Attribute type 1-sales attribute, 2-front-end size attribute, 3-ingredient attribute, 4-common attribute, 5-color attribute, 6-back-end size information |
<v1.3>When creating products in Shein, we need to submit two types of attributes : Main, SubMain and primary sale attributes. We can differentiate them by the different attribute_type values.
For example:
"attribute_label": 1 + "attribute_mode": 2 - Main attributes (sale_attribute
)
"attribute_mode": 2 - SubMain Attribute (sale_attribute_list
)
"attribute_mode" different from 2 - Secondary attributes (product_attribute_list
)
We want to make sure we are validating and pushing in the correct order the attributes so we have to add extra check and if we have a variation specifics for a product added as color and size but only size is ("attribute_label": 1 + "attribute_mode": 2) we want to push it as sale_attribute
and the color ("attribute_label": 0 + "attribute_mode": 2) to be pushed as sale_attribute_list
.
In case of more than one variation specifics but both attributes are ("attribute_label": 1 + "attribute_mode": 2) we want the first one to be pushed as sale_attribute
and the second as sale_attribute_list
.
All item specifics should be pushed as product_attribute_list.
</v1.3>
We want to store both the attribute_name
and attribute_id
and then when sending products for create, we need to map the IS/VS attribute_name in Hemi but send the attribute_id
when creating the product(s).
Also we can understand by the attribute_status whether an attribute is required or not. If it is on status 1 or 2 it is NOT required, but if it is status = 3 then it is required. <v1.4>Also all attributes which are with "attribute_label": 1 + "attribute_mode": 2 we treat them as required. </v1.4>
<v1.3>Also all attributes with attribute_mode= 2 should have in the export file Is Variation Specific? = Yes all the rest are with No this way we will know which attributes can be used for variations.</v1.3>
We can understand if a category is leaf or not if there is a children
object or not. If there is no children option then it is a leaf category.
Get Brand list
Use this API to retrieve all product brands. We will be storing brands as a part of the taxonomy (as attributes, applicable for each category)
API Call: POST /open-api/goods/query-brand-list
API Docs: https://open.sheincorp.com/documents/apidoc/detail/3000092-1000001
Example response :
{
"code": "0",
"msg": "OK",
"info": {
"data": [
{
"brand_code": "254p8",
"brand_name": "Disney",
"brand_name_en": "Disney"
},
{
"brand_code": "2xbdr",
"brand_name": "Star Wars",
"brand_name_en": "Star Wars"
},
{
"brand_code": "2za5c",
"brand_name": "Marvel",
"brand_name_en": "Marvel"
},
{
"brand_code": "29li5",
"brand_name": "Paw Patrol",
"brand_name_en": "Paw Patrol"
},
{
"brand_code": "2j4gl",
"brand_name": "West Ham F.C.",
"brand_name_en": "West Ham F.C."
},
{
"brand_code": "29izm",
"brand_name": "Wednesday",
"brand_name_en": "Wednesday"
},
{
"brand_code": "2400i",
"brand_name": "Wakanda",
"brand_name_en": "Wakanda"
},
{
"brand_code": "28k9p",
"brand_name": "Tottenham Hotspur F.C.",
"brand_name_en": "Tottenham Hotspur F.C."
},
{
"brand_code": "2o7dn",
"brand_name": "Rick & Morty",
"brand_name_en": "Rick & Morty"
},
{
"brand_code": "23vr6",
"brand_name": "Liverpool F.C.",
"brand_name_en": "Liverpool F.C."
},
{
"brand_code": "2ntu7",
"brand_name": "KreativeKraft",
"brand_name_en": "KreativeKraft"
},
{
"brand_code": "26mly",
"brand_name": "England F.C.",
"brand_name_en": "England F.C."
},
{
"brand_code": "27xv8",
"brand_name": "Derma Medico",
"brand_name_en": "Derma Medico"
},
{
"brand_code": "2ut69",
"brand_name": "Deco Express",
"brand_name_en": "Deco Express"
},
{
"brand_code": "2m5o2",
"brand_name": "City Comfort",
"brand_name_en": "City Comfort"
},
{
"brand_code": "2fcqd",
"brand_name": "Chelsea F.C.",
"brand_name_en": "Chelsea F.C."
},
{
"brand_code": "2ycnl",
"brand_name": "Celtic F.C.",
"brand_name_en": "Celtic F.C."
},
{
"brand_code": "28gmd",
"brand_name": "Arsenal F.C.",
"brand_name_en": "Arsenal F.C."
},
{
"brand_code": "2mvu4",
"brand_name": "ABYstyle Studio",
"brand_name_en": "ABYstyle Studio"
},
{
"brand_code": "2omsn",
"brand_name": "Manchester City FC",
"brand_name_en": "Manchester City FC"
},
{
"brand_code": "2xfe8",
"brand_name": "Pokemon(宝可梦)",
"brand_name_en": "Pokemon"
},
{
"brand_code": "22unx",
"brand_name": "SONIC THE HEDGEHOG",
"brand_name_en": "SONIC THE HEDGEHOG"
},
{
"brand_code": "2rumx",
"brand_name": "Harry Potter/哈利波特",
"brand_name_en": "Harry Potter"
},
{
"brand_code": "22kpp",
"brand_name": "L.O.L. SURPRISE!",
"brand_name_en": "MGA"
},
{
"brand_code": "2bamm",
"brand_name": "乐高/Lego",
"brand_name_en": "LEGO"
},
{
"brand_code": "24pd1",
"brand_name": "GB Eye",
"brand_name_en": "GB Eye"
},
{
"brand_code": "2cyb2",
"brand_name": "ABYstyle",
"brand_name_en": "ABYstyle"
},
{
"brand_code": "2t0eh",
"brand_name": "Stranger Things",
"brand_name_en": "Stranger Things"
},
{
"brand_code": "2tbs1",
"brand_name": "Gabby's Dollhouse",
"brand_name_en": "Gabby's Dollhouse"
},
{
"brand_code": "2zwmw",
"brand_name": "SpongeBob SquarePants",
"brand_name_en": "SpongeBob SquarePants"
},
{
"brand_code": "2caaq",
"brand_name": "Barbie",
"brand_name_en": "Barbie"
},
{
"brand_code": "23ugb",
"brand_name": "PlayStation",
"brand_name_en": "PlayStation"
},
{
"brand_code": "2356h",
"brand_name": "Jurassic World",
"brand_name_en": "Jurassic World"
},
{
"brand_code": "269yd",
"brand_name": "CoComelon",
"brand_name_en": "CoComelon"
},
{
"brand_code": "24qzt",
"brand_name": "Super Mario",
"brand_name_en": "Super Mario"
},
{
"brand_code": "27ww6",
"brand_name": "Minecraft",
"brand_name_en": "Minecraft"
},
{
"brand_code": "2a3qi",
"brand_name": "Naruto",
"brand_name_en": "Naruto"
},
{
"brand_code": "2aq6e",
"brand_name": "Bluey",
"brand_name_en": "Bluey"
},
{
"brand_code": "2b91e",
"brand_name": "Rainbow High",
"brand_name_en": "Rainbow High"
},
{
"brand_code": "2hy6x",
"brand_name": "Peppa Pig",
"brand_name_en": "Peppa Pig"
},
{
"brand_code": "2ra0v",
"brand_name": "Fortnite",
"brand_name_en": "Fortnite"
}
],
"meta": {
"count": 41,
"customObj": null
}
},
"bbl": null
}
We want to store both the brand_name_en
and brand_code
and then when sending products for create, we need to map the brand in Hemi but send the brand_code
when creating the product(s)
Taxonomy export file
In order to generate the taxonomy file we will need to create a new record in Taxonomy export with: Marketplace = Shein Status = pending Category for Export = “all” (or we can specify which exact categories) or “brands” so we can export brands. Email = email to which the file will be send
We want to have a logic and if the user has selected 5 or more categories for export, we want to export them in a single zip file. This will be valid also if all categories are being exported.
<v1.1> We want the name of the file to consist of CategoryID+Category name and it should be in a format SheinCategoryID_CategoryName.csv </v1.1>
Please find example file structure how it should look like after exported.
CategoryID | Category Name | Is Leaf | <v1.2> Navigation Path </v1.2> | Item Specifics | <v1.3>Is Variation Specific?</v1.3> | Required | Enumeration | Values | |||||
---|---|---|---|---|---|---|---|---|---|---|---|---|---|
1967 | Men Clothing | No | Ropa de Mujer > Ropa Premamá > Monos y Bodys de Premamá > Bodys premamá | Size | Yes | Yes | Yes | one-size | |||||
1967 | Men Clothing | No | Ropa de Mujer > Ropa Premamá > Monos y Bodys de Premamá > Bodys premamá | Color | Yes | Yes | Yes | Apricot | Army Green | DYJ_新款 | DYJ_H_EN | Beige | Black |
1967 | Men Clothing | No | Other Material(不对前台展示) | No | No | Yes | ABS | Acrylic | Aluminum | Copper | Glass | ||
2707 | Men Sweatpants | Yes | 其他材料 | No | No | Yes | Animal | Argyle | Bat | caoyang_val_en | Car | ||
2707 | Men Sweatpants | Yes | spmp66 | No | No | No |
Brands file format
Shein Brand | Brand code | |
---|---|---|
1 | Fortnite | 2u1ys |
2 | Bluey | 24rjv |
3 | Naruto | 2nz97 |
Please note that these examples are from the sandbox enviroment and we strongly hope that there will be no chinese words when this is done in a proper live environment, however it will be nice if the Dev team can advise if we can use some kind of translator so to have us covered just incase and translate any chinese to english if needed.