# Export using the API

By
The Quable Team

Step 1: Export classification tree
Step 2: Retrieve documents
Step 3: Export assets linked to the document
-- Retrieve a single asset
-- Retrieve multiple assets
Step 4: Export variants linked to the document
-- Retrieve a single variant
-- Retrieve multiple variants
Export overview


You can export data from your PIM using either the CSV file method, the API method, or a combination of both. Using the API, the process will follow those steps:

graph LR 
    A[Export classifications tree] 
    A --> B[Export documents]
    B --> C[Export assets]
    C --> D[Export variants]

# Step 1: export classification tree

The first step is to export the classification tree using its ID.

curl
curl --location 'https://education-developers.quable.com/api/catalogs/eco/classifications' \
--header 'Authorization: Bearer {{yourbearerID}}'

As a response, you will get a json file like the one below, and be able to retrieve the classification to use it in your external system (ERP or e-commerce solution).

{"@context":"/api/contexts/Catalog","@id":"/api/catalogs","@type":"hydra:Collection","hydra:member":[{"@type":"CatalogClassificationOutput","@id":"_:2229","id":"root_eco_474301105","legacyId":140,"isActive":true,"treeLevel":0,"treeLeft":1,"treeRight":14,"dateCreated":"2021-09-01T15:46:02+00:00","dateModified":"2021-09-15T10:22:00+00:00","children":[{"@type":"CatalogClassificationOutput","@id":"_:2253","id":"eco_6141c96d15a1a","legacyId":1443,"isActive":true,"treeLevel":1,"treeLeft":2,"treeRight":3,"dateCreated":"2021-09-15T10:22:37+00:00","dateModified":"2024-01-03T15:17:28+00:00","children":[],"attributes":{"quable_classification_name":{"en_GB":"Accessories","en_US":null,"fr_FR":"Nouveautés"}}},{"@type":"CatalogClassificationOutput","@id":"_:2254","id":"eco_612fa04e11547","legacyId":141,"isActive":true,"treeLevel":1,"treeLeft":4,"treeRight":11,"dateCreated":"2021-09-01T15:46:22+00:00","dateModified":"2024-01-03T15:17:28+00:00","children":[{"@type":"CatalogClassificationOutput","@id":"_:2338","id":"eco_612fa05921f85","legacyId":142,"isActive":true,"treeLevel":2,"treeLeft":5,"treeRight":6,"dateCreated":"2021-09-01T15:46:33+00:00","dateModified":"2021-09-02T12:57:16+00:00","children":[],"attributes":{"quable_classification_name":{"en_GB":"Top","en_US":null,"fr_FR":"Hauts"}}},{"@type":"CatalogClassificationOutput","@id":"_:2334","id":"eco_612fa0f1cae32","legacyId":143,"isActive":true,"treeLevel":2,"treeLeft":7,"treeRight":10,"dateCreated":"2021-09-01T15:49:05+00:00","dateModified":"2024-01-03T15:18:36+00:00","children":[{"@type":"CatalogClassificationOutput","@id":"_:2342","id":"classification_eco_femmes_bas_pantalon","legacyId":6469,"isActive":true,"treeLevel":3,"treeLeft":8,"treeRight":9,"dateCreated":"2024-01-03T15:21:47+00:00","dateModified":"2024-01-03T15:21:47+00:00","children":[],"attributes":{"quable_classification_name":{"en_GB":null,"en_US":null,"fr_FR":"Pantalon"}}}],"attributes":{"quable_classification_name":{"en_GB":"Stockings","en_US":null,"fr_FR":"Bas"}}}],"attributes":{"quable_classification_name":{"en_GB":"Women","en_US":null,"fr_FR":"Femmes"}}},{"@type":"CatalogClassificationOutput","@id":"_:2339","id":"eco_612fa0ff3cddc","legacyId":144,"isActive":true,"treeLevel":1,"treeLeft":12,"treeRight":13,"dateCreated":"2021-09-01T15:49:19+00:00","dateModified":"2024-01-03T15:17:28+00:00","children":[],"attributes":{"quable_classification_name":{"en_GB":"Men","en_US":null,"fr_FR":"Hommes"}}}],"attributes":{"quable_classification_name":{"en_GB":"Ecommerce - Root","en_US":null,"fr_FR":null}}}],"hydra:totalItems":1,"hydra:search":{"@type":"hydra:IriTemplate","hydra:template":"/api/catalogs/eco/classifications{?id,id[],objectType}","hydra:variableRepresentation":"BasicRepresentation","hydra:mapping":[{"@type":"IriTemplateMapping","variable":"id","property":"id","required":false},{"@type":"IriTemplateMapping","variable":"id[]","property":"id[]","required":false},{"@type":"IriTemplateMapping","variable":"objectType","property":"objectType","required":false}]}}

# Step 2: Retrieve documents

You can then retrieve the list of all documents to this channel.

curl
curl --location 'https://{{yourinstance}}/api/documents?catalog.id={{classificationID}}' \
--header 'Authorization: Bearer {{yourBearerID}}'

In each returned hydra:member element (each document), the "classifications" collection provides the set of classifications to which this document is assigned, like in the example below:

"classifications": [
                {
                    "@type": "Classification",
                    "@id": "/api/classifications/eco_612fa0ff3cddc",
                    "catalogId": "eco",
                    "id": "eco_612fa0ff3cddc",
                    "legacyId": 144
                },
                {
                    "@type": "Classification",
                    "@id": "/api/classifications/classification_trousers_and_shortsm3",
                    "catalogId": null,
                    "id": "classification_trousers_and_shortsm3",
                    "legacyId": 1285
                },
                {
                    "@type": "Classification",
                    "@id": "/api/classifications/eco_612fa0ff3cddc",
                    "catalogId": "eco",
                    "id": "eco_612fa0ff3cddc",
                    "legacyId": 144
                }
            ]
{
    "@context": "/api/contexts/Document",
    "@id": "/api/documents",
    "@type": "hydra:Collection",
    "hydra:member": [
        {
            "@type": "Document",
            "@id": "/api/documents/men_look_01",
            "active": true,
            "attributes": {
                "look_name": {
                    "en_GB": "Look 01",
                    "en_US": null,
                    "fr_FR": "Look 01"
                },
                "look_gender": [
                    {
                        "id": "cr_man",
                        "labels": {
                            "en_GB": "Man",
                            "en_US": "Man",
                            "fr_FR": "Homme"
                        }
                    }
                ],
                "look_lookcode": "MG-07485",
                "look_worn_size": [
                    {
                        "id": "look_M",
                        "labels": {
                            "en_GB": "M",
                            "en_US": "M",
                            "fr_FR": "M"
                        }
                    }
                ],
                "look_collection": {
                    "en_GB": "Automn",
                    "en_US": null,
                    "fr_FR": "Automne"
                },
                "look_model_name": {
                    "en_GB": "Lucas Smith",
                    "en_US": null,
                    "fr_FR": "Lucas Smith"
                },
                "look_seasoncode": "SS2021",
                "look_seasonname": [
                    {
                        "id": "look_aw",
                        "labels": {
                            "en_GB": "Automn - Winter",
                            "en_US": "Automn - Winter",
                            "fr_FR": "Automne - Hiver"
                        }
                    }
                ],
                "look_seasonyear": 2021,
                "look_composition": [
                    {
                        "id": "l_shirt",
                        "labels": {
                            "en_GB": "Shirt",
                            "en_US": "Shirt",
                            "fr_FR": "Chemise"
                        }
                    },
                    {
                        "id": "l_trousers",
                        "labels": {
                            "en_GB": "Trousers",
                            "en_US": "Trousers",
                            "fr_FR": "Pantalon"
                        }
                    }
                ],
                "look_look_number": 10766,
                "look_collectioncode": "023-SUM",
                "look_LookDescription": {
                    "en_GB": "Look 01 is a men's look that consists of the 90s Denim Trousers and the Smooth Pink Shirt.",
                    "en_US": null,
                    "fr_FR": "Le Look 01 est un look Homme qui se compose du Pantalon Denim 90s et de la Chemise Smooth Rose."
                },
                "look_model_height_cm": 188,
                "look_fashion_show_order": 4
            },
            "documentType": {
                "@id": "/api/document-types/look",
                "@type": "DocumentType",
                "default": false,
                "id": "look"
            },
            "attributeSet": {
                "@id": "/api/attribute-sets/attr_set_clothes_look",
                "@type": "AttributeSet",
                "id": "attr_set_clothes_look"
            },
            "classifications": [
                {
                    "@type": "Classification",
                    "@id": "/api/classifications/classification_lookm3",
                    "catalogId": null,
                    "id": "classification_lookm3",
                    "legacyId": 1376
                }
            ],
            "documentLinks": [
                {
                    "@type": "Link",
                    "@id": "/api/links/6525f526-fb62-4a4a-bb46-aaa52d533003",
                    "linkType": {
                        "@type": "LinkType",
                        "@id": "/api/link-types/link_type_look_color_reference",
                        "id": "link_type_look_color_reference"
                    },
                    "origin": {
                        "@type": "Document",
                        "@id": "/api/documents/men_look_01",
                        "id": "men_look_01"
                    },
                    "target": {
                        "@type": "Document",
                        "@id": "/api/documents/color_reference_90s_denim_trousers",
                        "id": "color_reference_90s_denim_trousers"
                    },
                    "sequence": 1,
                    "id": "6525f526-fb62-4a4a-bb46-aaa52d533003",
                    "legacyId": 101
                },
                {
                    "@type": "Link",
                    "@id": "/api/links/661bc042-cb09-409e-886f-7dbe4f3b32fa",
                    "linkType": {
                        "@type": "LinkType",
                        "@id": "/api/link-types/link_type_look_color_reference",
                        "id": "link_type_look_color_reference"
                    },
                    "origin": {
                        "@type": "Document",
                        "@id": "/api/documents/men_look_01",
                        "id": "men_look_01"
                    },
                    "target": {
                        "@type": "Document",
                        "@id": "/api/documents/color_reference_smooth_pink_shirt",
                        "id": "color_reference_smooth_pink_shirt"
                    },
                    "sequence": 2,
                    "id": "661bc042-cb09-409e-886f-7dbe4f3b32fa",
                    "legacyId": 149
                }
            ],
            "assetLinks": [
                {
                    "@type": "Link",
                    "@id": "/api/links/b72316a8-ce14-407d-acb1-51c7a6923c6c",
                    "linkType": {
                        "@type": "LinkType",
                        "@id": "/api/link-types/article_images_media",
                        "id": "article_images_media"
                    },
                    "origin": {
                        "@type": "Document",
                        "@id": "/api/documents/men_look_01",
                        "id": "men_look_01"
                    },
                    "target": {
                        "@type": "Asset",
                        "@id": "/api/assets/47710fd3-90ba-4f8f-8adb-front",
                        "id": "47710fd3-90ba-4f8f-8adb-front"
                    },
                    "sequence": 1,
                    "id": "b72316a8-ce14-407d-acb1-51c7a6923c6c",
                    "legacyId": 138
                }
            ],
            "workflows": [],
            "tags": [
                {
                    "@id": "/api/tags/look_medias_ok",
                    "@type": "Tag",
                    "id": "look_medias_ok"
                },
                {
                    "@id": "/api/tags/look_video_show_nok",
                    "@type": "Tag",
                    "id": "look_video_show_nok"
                }
            ],
            "completenesses": {
                "completeness_look": {
                    "en_GB": 0.88,
                    "en_US": 0.65,
                    "fr_FR": 0.88
                }
            },
            "variants": [],
            "mainAssetThumbnailUrl": "https://cdn.quable.com/education-developers/47710fd3-90ba-4f8f-8adb-front/thumbnail/look07-png.jpg",
            "dateCreated": "2021-08-09T14:28:41+00:00",
            "dateModified": "2021-09-13T09:01:27+00:00",
            "id": "men_look_01",
            "legacyId": 10
        },
        {
            "@type": "Document",
            "@id": "/api/documents/reference_90s_denim_trousers",
            "active": true,
            "attributes": {
                "r_type": [
                    {
                        "id": "trousers",
                        "labels": {
                            "en_GB": "Trousers",
                            "en_US": "Trousers",
                            "fr_FR": "Pantalon"
                        }
                    }
                ],
                "r_brand": [
                    {
                        "id": "brand1",
                        "labels": {
                            "en_GB": "Brand 1",
                            "en_US": "Brand 1",
                            "fr_FR": "Marque 1"
                        }
                    }
                ],
                "r_season": [
                    {
                        "id": "ss21",
                        "labels": {
                            "en_GB": "SS21",
                            "en_US": "SS21",
                            "fr_FR": "PE21"
                        }
                    }
                ],
                "r_status": [
                    {
                        "id": "ref_active",
                        "labels": {
                            "en_GB": "Active",
                            "en_US": "Active",
                            "fr_FR": "Actif"
                        }
                    }
                ],
                "r_made_in": [
                    {
                        "id": "italy",
                        "labels": {
                            "en_GB": "Italy",
                            "en_US": "Italy",
                            "fr_FR": "Italie"
                        }
                    }
                ],
                "r_washing": [
                    {
                        "id": "60_degrees",
                        "labels": {
                            "en_GB": "60 degrees",
                            "en_US": "60 degrees",
                            "fr_FR": "60 degrés"
                        }
                    }
                ],
                "r_pressing": [
                    {
                        "id": "hot",
                        "labels": {
                            "en_GB": "Hot",
                            "en_US": "Hot",
                            "fr_FR": "Chaud"
                        }
                    }
                ],
                "r_supplier": [
                    {
                        "id": "supplier3",
                        "labels": {
                            "en_GB": "Supplier 3",
                            "en_US": "Supplier 3",
                            "fr_FR": "Fournisseur 3"
                        }
                    }
                ],
                "r_long_name": {
                    "en_GB": "90s Denim Trousers",
                    "en_US": null,
                    "fr_FR": "Pantalon Denim 90s"
                },
                "r_continuity": [
                    {
                        "id": "r_seasonnal",
                        "labels": {
                            "en_GB": "Seasonnal",
                            "en_US": "Seasonnal",
                            "fr_FR": "Saisonnier"
                        }
                    }
                ],
                "r_custom_code": [
                    {
                        "id": "6110",
                        "labels": {
                            "en_GB": "6110-Pulls",
                            "en_US": "6110-Pulls",
                            "fr_FR": "6110-Pulls"
                        }
                    }
                ],
                "r_custom_name": [
                    {
                        "id": "6108_name",
                        "labels": {
                            "en_GB": "Women underwear",
                            "en_US": "Women underwear",
                            "fr_FR": "Lingerie femmes"
                        }
                    }
                ],
                "r_drying_type": [
                    {
                        "id": "notrumbledry",
                        "labels": {
                            "en_GB": "No trumble dry",
                            "en_US": "No trumble dry",
                            "fr_FR": "Pas de nettoyage à sec"
                        }
                    }
                ],
                "r_maintenance": {
                    "en_GB": "Wash with similar colors.",
                    "en_US": null,
                    "fr_FR": "Laver avec des couleurs similaires."
                },
                "r_trousers_cut": [
                    {
                        "id": "straight",
                        "labels": {
                            "en_GB": "Straight",
                            "en_US": "Straight",
                            "fr_FR": "Straight"
                        }
                    }
                ],
                "reference_name": {
                    "en_GB": "90s Denim Trousers",
                    "en_US": null,
                    "fr_FR": "Pantalon Denim 90s"
                },
                "r_main_material": {
                    "en_GB": "100% Denim",
                    "en_US": null,
                    "fr_FR": "100% Denim"
                },
                "r_trousers_height": [
                    {
                        "id": "high_waist",
                        "labels": {
                            "en_GB": "High waist",
                            "en_US": "High waist",
                            "fr_FR": "Taille haute"
                        }
                    }
                ],
                "r_dress_skirt_length": [
                    {
                        "id": "regular_t",
                        "labels": {
                            "en_GB": "Regular",
                            "en_US": "Regular",
                            "fr_FR": "Regular"
                        }
                    }
                ],
                "r_manufacturing_type": [
                    {
                        "id": "sewn",
                        "labels": {
                            "en_GB": "Sewn",
                            "en_US": "Sewn",
                            "fr_FR": "Cousu"
                        }
                    }
                ]
            },
            "documentType": {
                "@id": "/api/document-types/reference",
                "@type": "DocumentType",
                "default": true,
                "id": "reference"
            },
            "attributeSet": {
                "@id": "/api/attribute-sets/att_set_trousers",
                "@type": "AttributeSet",
                "id": "att_set_trousers"
            },
            "classifications": [
                {
                    "@type": "Classification",
                    "@id": "/api/classifications/eco_612fa0ff3cddc",
                    "catalogId": "eco",
                    "id": "eco_612fa0ff3cddc",
                    "legacyId": 144
                },
                {
                    "@type": "Classification",
                    "@id": "/api/classifications/classification_trousers_and_shortsm3",
                    "catalogId": null,
                    "id": "classification_trousers_and_shortsm3",
                    "legacyId": 1285
                },
                {
                    "@type": "Classification",
                    "@id": "/api/classifications/eco_612fa0ff3cddc",
                    "catalogId": "eco",
                    "id": "eco_612fa0ff3cddc",
                    "legacyId": 144
                }
            ],
            "documentLinks": [
                {
                    "@type": "Link",
                    "@id": "/api/links/b3d8b718-befb-44ab-9544-f3258cd1cb5e",
                    "linkType": {
                        "@type": "LinkType",
                        "@id": "/api/link-types/link_type_reference_reference_color",
                        "id": "link_type_reference_reference_color"
                    },
                    "origin": {
                        "@type": "Document",
                        "@id": "/api/documents/reference_90s_denim_trousers",
                        "id": "reference_90s_denim_trousers"
                    },
                    "target": {
                        "@type": "Document",
                        "@id": "/api/documents/color_reference_90s_denim_trousers",
                        "id": "color_reference_90s_denim_trousers"
                    },
                    "sequence": 1,
                    "id": "b3d8b718-befb-44ab-9544-f3258cd1cb5e",
                    "legacyId": 87
                },
                {
                    "@type": "Link",
                    "@id": "/api/links/de999939-46c0-484f-bee5-17f580bf16ad",
                    "linkType": {
                        "@type": "LinkType",
                        "@id": "/api/link-types/link_type_x_sell",
                        "id": "link_type_x_sell"
                    },
                    "origin": {
                        "@type": "Document",
                        "@id": "/api/documents/reference_smooth_shirt",
                        "id": "reference_smooth_shirt"
                    },
                    "target": {
                        "@type": "Document",
                        "@id": "/api/documents/reference_90s_denim_trousers",
                        "id": "reference_90s_denim_trousers"
                    },
                    "sequence": 1,
                    "id": "de999939-46c0-484f-bee5-17f580bf16ad",
                    "legacyId": 283
                }
            ],
            "assetLinks": [
                {
                    "@type": "Link",
                    "@id": "/api/links/eac7e66c-2932-4aff-bb2e-d4273968cce0",
                    "linkType": {
                        "@type": "LinkType",
                        "@id": "/api/link-types/article_images_media",
                        "id": "article_images_media"
                    },
                    "origin": {
                        "@type": "Document",
                        "@id": "/api/documents/reference_90s_denim_trousers",
                        "id": "reference_90s_denim_trousers"
                    },
                    "target": {
                        "@type": "Asset",
                        "@id": "/api/assets/4b8cc387-2e6b-4d41-b15a-front",
                        "id": "4b8cc387-2e6b-4d41-b15a-front"
                    },
                    "sequence": 1,
                    "id": "eac7e66c-2932-4aff-bb2e-d4273968cce0",
                    "legacyId": 133
                }
            ],
            "workflows": [],
            "tags": [
                {
                    "@id": "/api/tags/all_documents_new_6130edc94b136",
                    "@type": "Tag",
                    "id": "all_documents_new_6130edc94b136"
                }
            ],
            "completenesses": {
                "completeness_characteristics_and_care": {
                    "en_GB": 0.9,
                    "en_US": 0.7,
                    "fr_FR": 0.9
                }
            },
            "variants": [],
            "mainAssetThumbnailUrl": "https://cdn.quable.com/education-developers/4b8cc387-2e6b-4d41-b15a-front/thumbnail/trousers-vector-jpeg.jpg",
            "dateCreated": "2021-08-09T14:45:50+00:00",
            "dateModified": "2023-07-20T15:24:49+00:00",
            "id": "reference_90s_denim_trousers",
            "legacyId": 11
        },
        {
            "@type": "Document",
            "@id": "/api/documents/color_reference_90s_denim_trousers",
            "active": true,
            "attributes": {
                "cr_occasion": [
                    {
                        "id": "cr_evening",
                        "labels": {
                            "en_GB": "Evening",
                            "en_US": "Evening",
                            "fr_FR": "Soirée"
                        }
                    }
                ],
                "cr_seotitle": {
                    "en_GB": "90s Grey Denim Trousers",
                    "en_US": null,
                    "fr_FR": "Pantalon en Denim Gris 90s"
                },
                "cr_color_code": [
                    {
                        "id": "cr_00008B",
                        "labels": {
                            "en_GB": "# 00008B",
                            "en_US": "# 00008B",
                            "fr_FR": "# 00008B"
                        }
                    }
                ],
                "cr_color_name": [
                    {
                        "id": "cr_grey",
                        "labels": {
                            "en_GB": "Grey",
                            "en_US": "Grey",
                            "fr_FR": "Gris"
                        }
                    }
                ],
                "cr_description": {
                    "en_GB": "This piece combines the season’s 90s-inspired tailoring silhouette.",
                    "en_US": null,
                    "fr_FR": "Cette pièce combine la silhouette tailleur inspirée des années 90s."
                },
                "cr_macro_color": [
                    {
                        "id": "cr_Grey",
                        "labels": {
                            "en_GB": "Grey",
                            "en_US": "Grey",
                            "fr_FR": "Gris"
                        }
                    }
                ],
                "cr_marketplaces": [
                    {
                        "id": "veepee",
                        "labels": {
                            "en_GB": "Veepee",
                            "en_US": null,
                            "fr_FR": "veepee"
                        }
                    },
                    {
                        "id": "zalando",
                        "labels": {
                            "en_GB": "Zalando",
                            "en_US": null,
                            "fr_FR": "Zalando"
                        }
                    },
                    {
                        "id": "laredoute",
                        "labels": {
                            "en_GB": "La redoute",
                            "en_US": null,
                            "fr_FR": "La redoute"
                        }
                    }
                ],
                "cr_veepee_title": {
                    "en_GB": "90s Grey Denim Trousers",
                    "en_US": null,
                    "fr_FR": "<p>Pantalon en Denim Gris 90s</p>"
                },
                "cr_active_season": {
                    "en_GB": "SS21",
                    "en_US": null,
                    "fr_FR": "SS21"
                },
                "color_ref_is_active": [
                    {
                        "id": "active_yes",
                        "labels": {
                            "en_GB": "Yes",
                            "en_US": "Yes",
                            "fr_FR": "Oui"
                        }
                    }
                ],
                "cr_active_countries": [
                    {
                        "id": "cr_united_kingdom",
                        "labels": {
                            "en_GB": "United Kingdom",
                            "en_US": "United Kingdom",
                            "fr_FR": "Royaume-Uni"
                        }
                    },
                    {
                        "id": "cr_france",
                        "labels": {
                            "en_GB": "France",
                            "en_US": "France",
                            "fr_FR": "France"
                        }
                    },
                    {
                        "id": "cr_portugal",
                        "labels": {
                            "en_GB": "Portugal",
                            "en_US": "Portugal",
                            "fr_FR": "Portugal"
                        }
                    },
                    {
                        "id": "cr_italy",
                        "labels": {
                            "en_GB": "Italy",
                            "en_US": "Italy",
                            "fr_FR": "Italie"
                        }
                    },
                    {
                        "id": "cr_espagne",
                        "labels": {
                            "en_GB": "Spain",
                            "en_US": "Spain",
                            "fr_FR": "Espagne"
                        }
                    }
                ],
                "color_reference_name": {
                    "en_GB": "90s Grey Denim Trousers",
                    "en_US": null,
                    "fr_FR": "Pantalon Denim 90s Gris"
                },
                "cr_digital_description": {
                    "en_GB": "<ul><li>100% Cotton</li><li>Black</li><li>Regular fit</li><li>Model wears a FR 50 size</li><li>Model measurements : chest 34’’ / 87 cm, height 6'1.5’’ / 186 cm</li><li>Made in Italy</li></ul>",
                    "en_US": null,
                    "fr_FR": "<ul><li>100% Cotton</li><li>Gris</li><li>Coupe ajustée</li><li>Le modèle porte une taille FR 50</li><li>Model measurements : chest 34’’ / 87 cm, height 6'1.5’’ / 186 cm</li><li>Fabriqué en Italie</li></ul>"
                },
                "cr_seo_long_description": {
                    "en_GB": "<p>This piece combines the season’s 90s-inspired tailoring silhouette. It is crafted in a regular fit from denim fabric adorned with a woven Distorted Damier jacquard motif, with light shoulder pads and broad lapels supplying a visual twist. Wavy metallic buttons on the front opening and cuffs add to the signature vibe.</p>",
                    "en_US": null,
                    "fr_FR": "<p>Ce pantalon de coupe standard en denim revisite le motif Damier emblématique de la marque sous la forme d'un tissage jacquard, une référence au thème bicolore de la collection. Ce modèle s'agrémente des boutons métalliques ondulés.</p>"
                },
                "cr_seo_short_description": {
                    "en_GB": "The 90s Grey Denim trousers combines the season’s 90s-inspired tailoring silhouette.",
                    "en_US": null,
                    "fr_FR": "Cette pièce combine la silhouette tailleur inspirée des années 90s. Il est confectionné dans une coupe régulière."
                }
            },
            "documentType": {
                "@id": "/api/document-types/color_reference",
                "@type": "DocumentType",
                "default": false,
                "id": "color_reference"
            },
            "attributeSet": {
                "@id": "/api/attribute-sets/attr_set_clothes_color_reference",
                "@type": "AttributeSet",
                "id": "attr_set_clothes_color_reference"
            },
            "classifications": [
                {
                    "@type": "Classification",
                    "@id": "/api/classifications/eco_612fa0ff3cddc",
                    "catalogId": "eco",
                    "id": "eco_612fa0ff3cddc",
                    "legacyId": 144
                },
                {
                    "@type": "Classification",
                    "@id": "/api/classifications/classification_trousers_and_shortsm3",
                    "catalogId": null,
                    "id": "classification_trousers_and_shortsm3",
                    "legacyId": 1285
                },
                {
                    "@type": "Classification",
                    "@id": "/api/classifications/lrd_6141c684d9e6c",
                    "catalogId": "lrd",
                    "id": "lrd_6141c684d9e6c",
                    "legacyId": 1418
                },
                {
                    "@type": "Classification",
                    "@id": "/api/classifications/vpe_6141c707c04a6",
                    "catalogId": "vpe",
                    "id": "vpe_6141c707c04a6",
                    "legacyId": 1431
                },
                {
                    "@type": "Classification",
                    "@id": "/api/classifications/eco_612fa0ff3cddc",
                    "catalogId": "eco",
                    "id": "eco_612fa0ff3cddc",
                    "legacyId": 144
                },
                {
                    "@type": "Classification",
                    "@id": "/api/classifications/lrd_6141c684d9e6c",
                    "catalogId": "lrd",
                    "id": "lrd_6141c684d9e6c",
                    "legacyId": 1418
                },
                {
                    "@type": "Classification",
                    "@id": "/api/classifications/vpe_6141c707c04a6",
                    "catalogId": "vpe",
                    "id": "vpe_6141c707c04a6",
                    "legacyId": 1431
                }
            ],
            "documentLinks": [
                {
                    "@type": "Link",
                    "@id": "/api/links/b3d8b718-befb-44ab-9544-f3258cd1cb5e",
                    "linkType": {
                        "@type": "LinkType",
                        "@id": "/api/link-types/link_type_reference_reference_color",
                        "id": "link_type_reference_reference_color"
                    },
                    "origin": {
                        "@type": "Document",
                        "@id": "/api/documents/reference_90s_denim_trousers",
                        "id": "reference_90s_denim_trousers"
                    },
                    "target": {
                        "@type": "Document",
                        "@id": "/api/documents/color_reference_90s_denim_trousers",
                        "id": "color_reference_90s_denim_trousers"
                    },
                    "sequence": 1,
                    "id": "b3d8b718-befb-44ab-9544-f3258cd1cb5e",
                    "legacyId": 87
                },
                {
                    "@type": "Link",
                    "@id": "/api/links/6525f526-fb62-4a4a-bb46-aaa52d533003",
                    "linkType": {
                        "@type": "LinkType",
                        "@id": "/api/link-types/link_type_look_color_reference",
                        "id": "link_type_look_color_reference"
                    },
                    "origin": {
                        "@type": "Document",
                        "@id": "/api/documents/men_look_01",
                        "id": "men_look_01"
                    },
                    "target": {
                        "@type": "Document",
                        "@id": "/api/documents/color_reference_90s_denim_trousers",
                        "id": "color_reference_90s_denim_trousers"
                    },
                    "sequence": 1,
                    "id": "6525f526-fb62-4a4a-bb46-aaa52d533003",
                    "legacyId": 101
                }
            ],
            "assetLinks": [
                {
                    "@type": "Link",
                    "@id": "/api/links/3c875618-8310-46b7-8fb1-67be4627a944",
                    "linkType": {
                        "@type": "LinkType",
                        "@id": "/api/link-types/article_images_media",
                        "id": "article_images_media"
                    },
                    "origin": {
                        "@type": "Document",
                        "@id": "/api/documents/color_reference_90s_denim_trousers",
                        "id": "color_reference_90s_denim_trousers"
                    },
                    "target": {
                        "@type": "Asset",
                        "@id": "/api/assets/c4d09716-9b7d-4db3-858f-front",
                        "id": "c4d09716-9b7d-4db3-858f-front"
                    },
                    "sequence": 1,
                    "id": "3c875618-8310-46b7-8fb1-67be4627a944",
                    "legacyId": 120
                },
                {
                    "@type": "Link",
                    "@id": "/api/links/afd9a925-a81f-4b73-90f5-1cf9e97f1bc6",
                    "linkType": {
                        "@type": "LinkType",
                        "@id": "/api/link-types/color_reference_worn_view",
                        "id": "color_reference_worn_view"
                    },
                    "origin": {
                        "@type": "Document",
                        "@id": "/api/documents/color_reference_90s_denim_trousers",
                        "id": "color_reference_90s_denim_trousers"
                    },
                    "target": {
                        "@type": "Asset",
                        "@id": "/api/assets/32fd1ffc-bb10-4b26-9293-front",
                        "id": "32fd1ffc-bb10-4b26-9293-front"
                    },
                    "sequence": 1,
                    "id": "afd9a925-a81f-4b73-90f5-1cf9e97f1bc6",
                    "legacyId": 123
                },
                {
                    "@type": "Link",
                    "@id": "/api/links/a98867d8-72c7-441b-b03f-e89bb8ec1dae",
                    "linkType": {
                        "@type": "LinkType",
                        "@id": "/api/link-types/color_reference_worn_view",
                        "id": "color_reference_worn_view"
                    },
                    "origin": {
                        "@type": "Document",
                        "@id": "/api/documents/color_reference_90s_denim_trousers",
                        "id": "color_reference_90s_denim_trousers"
                    },
                    "target": {
                        "@type": "Asset",
                        "@id": "/api/assets/c57f5dba-50c9-4f31-8b68-front",
                        "id": "c57f5dba-50c9-4f31-8b68-front"
                    },
                    "sequence": 2,
                    "id": "a98867d8-72c7-441b-b03f-e89bb8ec1dae",
                    "legacyId": 124
                },
                {
                    "@type": "Link",
                    "@id": "/api/links/9009951d-ed06-4e6b-acd7-8eb4f6725747",
                    "linkType": {
                        "@type": "LinkType",
                        "@id": "/api/link-types/color_reference_worn_view",
                        "id": "color_reference_worn_view"
                    },
                    "origin": {
                        "@type": "Document",
                        "@id": "/api/documents/color_reference_90s_denim_trousers",
                        "id": "color_reference_90s_denim_trousers"
                    },
                    "target": {
                        "@type": "Asset",
                        "@id": "/api/assets/122c168f-02ef-499b-aed8-front",
                        "id": "122c168f-02ef-499b-aed8-front"
                    },
                    "sequence": 3,
                    "id": "9009951d-ed06-4e6b-acd7-8eb4f6725747",
                    "legacyId": 125
                },
                {
                    "@type": "Link",
                    "@id": "/api/links/3a80ed50-ea27-4265-ac4b-21eff099785c",
                    "linkType": {
                        "@type": "LinkType",
                        "@id": "/api/link-types/color_reference_worn_view",
                        "id": "color_reference_worn_view"
                    },
                    "origin": {
                        "@type": "Document",
                        "@id": "/api/documents/color_reference_90s_denim_trousers",
                        "id": "color_reference_90s_denim_trousers"
                    },
                    "target": {
                        "@type": "Asset",
                        "@id": "/api/assets/3436deb0-5bd5-444f-9bc4-front",
                        "id": "3436deb0-5bd5-444f-9bc4-front"
                    },
                    "sequence": 4,
                    "id": "3a80ed50-ea27-4265-ac4b-21eff099785c",
                    "legacyId": 126
                }
            ],
            "workflows": [
                {
                    "@type": "Workflow",
                    "@id": "/api/workflows/workflow_product_workflow",
                    "steps": [
                        {
                            "id": "workflow_product_workflow_new",
                            "color": "turquoise",
                            "default": true,
                            "name": {
                                "en-US": "Init",
                                "fr-FR": "Nouveau"
                            },
                            "description": {
                                "en-US": null,
                                "fr-FR": null
                            }
                        }
                    ],
                    "transitions": [
                        {
                            "id": "workflow_product_workflow_enrichement_started",
                            "originStepId": "workflow_product_workflow_new",
                            "targetStepId": "workflow_product_workflow_enrichment",
                            "name": {
                                "fr-FR": "Contribution KO"
                            },
                            "permissionFeatures": [
                                "role_admin",
                                "role_manager",
                                "role_contributor",
                                "role_iconographer",
                                "role_reader"
                            ]
                        }
                    ],
                    "dateCreated": "2021-08-24T15:58:28+00:00",
                    "dateModified": "2023-03-13T16:33:05+00:00",
                    "id": "workflow_product_workflow"
                }
            ],
            "tags": [
                {
                    "@id": "/api/tags/color_reference_active_product",
                    "@type": "Tag",
                    "id": "color_reference_active_product"
                },
                {
                    "@id": "/api/tags/color_reference_description_ok",
                    "@type": "Tag",
                    "id": "color_reference_description_ok"
                },
                {
                    "@id": "/api/tags/color_reference_e_com_ok",
                    "@type": "Tag",
                    "id": "color_reference_e_com_ok"
                }
            ],
            "completenesses": {
                "completeness_collection_book": {
                    "en_GB": 0.9,
                    "en_US": 0.3,
                    "fr_FR": 0.9
                },
                "completeness_brand_portal": {
                    "en_GB": 1,
                    "en_US": 0.36,
                    "fr_FR": 1
                },
                "completeness_e_commerce": {
                    "en_GB": 0.9,
                    "en_US": 0.2,
                    "fr_FR": 0.9
                }
            },
            "variants": [
                {
                    "@type": "Variant",
                    "@id": "/api/variants/sku_90s_grey_trousers_size_34",
                    "id": "sku_90s_grey_trousers_size_34"
                },
                {
                    "@type": "Variant",
                    "@id": "/api/variants/sku_90s_grey_trousers_size_36",
                    "id": "sku_90s_grey_trousers_size_36"
                },
                {
                    "@type": "Variant",
                    "@id": "/api/variants/sku_90s_grey_trousers_size_38",
                    "id": "sku_90s_grey_trousers_size_38"
                }
            ],
            "mainAssetThumbnailUrl": "https://cdn.quable.com/education-developers/c4d09716-9b7d-4db3-858f-front/thumbnail/funk-men-trousers-png.jpg",
            "dateCreated": "2021-08-10T08:20:13+00:00",
            "dateModified": "2023-06-23T08:13:08+00:00",
            "id": "color_reference_90s_denim_trousers",
            "legacyId": 17
        },
        {
            "@type": "Document",
            "@id": "/api/documents/color_reference_zoe_burgundy_bucket_bag",
            "active": true,
            "attributes": {
                "cr_seotitle": {
                    "en_GB": "Zoe Burgundy Leather Bucket Bag",
                    "en_US": null,
                    "fr_FR": "Sac à main Zoe en cuir bordeaux"
                },
                "cr_color_code": [
                    {
                        "id": "cr_800080",
                        "labels": {
                            "en_GB": "# 800080",
                            "en_US": "# 800080",
                            "fr_FR": "# 800080"
                        }
                    }
                ],
                "cr_color_name": [
                    {
                        "id": "cr_plum",
                        "labels": {
                            "en_GB": "Plum",
                            "en_US": "Plum",
                            "fr_FR": "Prune"
                        }
                    }
                ],
                "cr_description": {
                    "en_GB": "This burgundy leather handbag is definitely a must-have for a trendy evening look.",
                    "en_US": "This burgundy leather handbag is definitely a must-have for a trendy evening look.",
                    "fr_FR": "Ce sac à main en cuir bordeaux est assurément un must-have pour un look du soir tendance."
                },
                "cr_macro_color": [
                    {
                        "id": "cr_Burgundy",
                        "labels": {
                            "en_GB": "Burgundy",
                            "en_US": "Burgundy",
                            "fr_FR": "Bordeaux"
                        }
                    }
                ],
                "cr_marketplaces": [
                    {
                        "id": "sarenza",
                        "labels": {
                            "en_GB": "Sarenza",
                            "en_US": null,
                            "fr_FR": "sarenza"
                        }
                    },
                    {
                        "id": "veepee",
                        "labels": {
                            "en_GB": "Veepee",
                            "en_US": null,
                            "fr_FR": "veepee"
                        }
                    },
                    {
                        "id": "zalando",
                        "labels": {
                            "en_GB": "Zalando",
                            "en_US": null,
                            "fr_FR": "Zalando"
                        }
                    },
                    {
                        "id": "laredoute",
                        "labels": {
                            "en_GB": "La redoute",
                            "en_US": null,
                            "fr_FR": "La redoute"
                        }
                    }
                ],
                "cr_sarenza_desc": {
                    "en_GB": null,
                    "en_US": null,
                    "fr_FR": "<ul><li>Coupe : Normal</li><li>Dimensions : 24x19x14.5</li><li>Type de fermeture : CORDON</li><li>Matiere : CUIR</li><li>Type de bagagerie : SAC A MAIN</li></ul>"
                },
                "cr_veepee_title": {
                    "en_GB": "Zoe Burgundy Leather Bucket Bag",
                    "en_US": null,
                    "fr_FR": "<p>Sac à main Zoe en cuir bordeaux</p>"
                },
                "cr_zalando_desc": {
                    "en_GB": null,
                    "en_US": null,
                    "fr_FR": "<ul><li>Coupe : Normal</li><li>Dimensions : 24x19x14.5</li><li>Type de fermeture : CORDON</li><li>Matiere : CUIR</li><li>Type de bagagerie : SAC A MAIN</li></ul>"
                },
                "cr_active_season": {
                    "en_GB": "AW21",
                    "en_US": null,
                    "fr_FR": "AW21"
                },
                "color_ref_is_active": [
                    {
                        "id": "active_yes",
                        "labels": {
                            "en_GB": "Yes",
                            "en_US": "Yes",
                            "fr_FR": "Oui"
                        }
                    }
                ],
                "cr_active_countries": [
                    {
                        "id": "cr_italy",
                        "labels": {
                            "en_GB": "Italy",
                            "en_US": "Italy",
                            "fr_FR": "Italie"
                        }
                    },
                    {
                        "id": "cr_france",
                        "labels": {
                            "en_GB": "France",
                            "en_US": "France",
                            "fr_FR": "France"
                        }
                    },
                    {
                        "id": "cr_portugal",
                        "labels": {
                            "en_GB": "Portugal",
                            "en_US": "Portugal",
                            "fr_FR": "Portugal"
                        }
                    }
                ],
                "color_reference_name": {
                    "en_GB": "Burgundy leather Zoe bag",
                    "en_US": "Burgundy leather Zoe bag",
                    "fr_FR": "Sac Zoe en cuir Bordeaux"
                },
                "cr_digital_description": {
                    "en_GB": "<p>This medium-sized handbag will accompany you everywhere in your daily life, worn on the shoulder or across the body thanks to its two adjustable handles enhanced by elegant silver metal finishes. Height 24.5 cm, Width 19 cm, Depth 14 cm.</p>",
                    "en_US": null,
                    "fr_FR": "<ul><li>Coupe : Normal</li><li>Dimensions : 24x19x14.5</li><li>Type de fermeture : CORDON</li><li>Matiere : CUIR</li><li>Type de bagagerie : SAC A MAIN</li></ul>"
                },
                "cr_seo_long_description": {
                    "en_GB": "<p>This burgundy leather handbag is definitely a must-have for a trendy evening look. It is made in Italy in a grained leather with an original red colour, underlined by its bucket size tightened by matching ties on the front. This medium-sized handbag will accompany you everywhere in your daily life, worn on the shoulder or across the body thanks to its two adjustable handles enhanced by elegant silver metal finishes. Height 24.5 cm, Width 19 cm, Depth 14 cm.</p><p><br></p>",
                    "en_US": null,
                    "fr_FR": "<p>Ce sac à main en cuir vert est assurément un must-have pour un look du soir tendance. Il est confectionné en Italie dans un cuir grainé à la teinte verte originale, soulignée par son format seau resserré par des liens assortis sur le devant. Ce sac à main taille medium vous accompagnera partout au quotidien, porté à l'épaule ou en bandoulière grâce à ses deux anses réglables rehaussées de finitions élégantes en métal argenté. Hauteur 24,5 cm, Largeur 19 cm, Profondeur 14 cm.</p>"
                },
                "cr_seo_short_description": {
                    "en_GB": "This burgundy leather handbag is definitely a must-have for a trendy evening look.",
                    "en_US": null,
                    "fr_FR": "Ce sac à main en cuir vert est assurément un must-have pour un look du soir tendance."
                }
            },
            "documentType": {
                "@id": "/api/document-types/color_reference",
                "@type": "DocumentType",
                "default": false,
                "id": "color_reference"
            },
            "attributeSet": null,
            "classifications": [
                {
                    "@type": "Classification",
                    "@id": "/api/classifications/eco_612fa04e11547",
                    "catalogId": "eco",
                    "id": "eco_612fa04e11547",
                    "legacyId": 141
                },
                {
                    "@type": "Classification",
                    "@id": "/api/classifications/classification_business_bagsw1",
                    "catalogId": null,
                    "id": "classification_business_bagsw1",
                    "legacyId": 1221
                },
                {
                    "@type": "Classification",
                    "@id": "/api/classifications/lrd_6141c6c72751f",
                    "catalogId": "lrd",
                    "id": "lrd_6141c6c72751f",
                    "legacyId": 1425
                },
                {
                    "@type": "Classification",
                    "@id": "/api/classifications/vpe_6141c6da77a38",
                    "catalogId": "vpe",
                    "id": "vpe_6141c6da77a38",
                    "legacyId": 1426
                },
                {
                    "@type": "Classification",
                    "@id": "/api/classifications/lrd_6141c784e7268",
                    "catalogId": "lrd",
                    "id": "lrd_6141c784e7268",
                    "legacyId": 1436
                },
                {
                    "@type": "Classification",
                    "@id": "/api/classifications/eco_6141c96d15a1a",
                    "catalogId": "eco",
                    "id": "eco_6141c96d15a1a",
                    "legacyId": 1443
                },
                {
                    "@type": "Classification",
                    "@id": "/api/classifications/eco_612fa04e11547",
                    "catalogId": "eco",
                    "id": "eco_612fa04e11547",
                    "legacyId": 141
                },
                {
                    "@type": "Classification",
                    "@id": "/api/classifications/lrd_6141c6c72751f",
                    "catalogId": "lrd",
                    "id": "lrd_6141c6c72751f",
                    "legacyId": 1425
                },
                {
                    "@type": "Classification",
                    "@id": "/api/classifications/vpe_6141c6da77a38",
                    "catalogId": "vpe",
                    "id": "vpe_6141c6da77a38",
                    "legacyId": 1426
                },
                {
                    "@type": "Classification",
                    "@id": "/api/classifications/lrd_6141c784e7268",
                    "catalogId": "lrd",
                    "id": "lrd_6141c784e7268",
                    "legacyId": 1436
                },
                {
                    "@type": "Classification",
                    "@id": "/api/classifications/eco_6141c96d15a1a",
                    "catalogId": "eco",
                    "id": "eco_6141c96d15a1a",
                    "legacyId": 1443
                }
            ],
            "documentLinks": [
                {
                    "@type": "Link",
                    "@id": "/api/links/b5eee9fd-5496-4fa5-832b-ebd683e81e6d",
                    "linkType": {
                        "@type": "LinkType",
                        "@id": "/api/link-types/link_type_reference_reference_color",
                        "id": "link_type_reference_reference_color"
                    },
                    "origin": {
                        "@type": "Document",
                        "@id": "/api/documents/reference_zoe_bucket_bag",
                        "id": "reference_zoe_bucket_bag"
                    },
                    "target": {
                        "@type": "Document",
                        "@id": "/api/documents/color_reference_zoe_burgundy_bucket_bag",
                        "id": "color_reference_zoe_burgundy_bucket_bag"
                    },
                    "sequence": 2,
                    "id": "b5eee9fd-5496-4fa5-832b-ebd683e81e6d",
                    "legacyId": 178
                },
                {
                    "@type": "Link",
                    "@id": "/api/links/80d20999-dd3c-4e92-a6fb-8a1b8098a71f",
                    "linkType": {
                        "@type": "LinkType",
                        "@id": "/api/link-types/link_type_color_reference___material",
                        "id": "link_type_color_reference___material"
                    },
                    "origin": {
                        "@type": "Document",
                        "@id": "/api/documents/color_reference_zoe_burgundy_bucket_bag",
                        "id": "color_reference_zoe_burgundy_bucket_bag"
                    },
                    "target": {
                        "@type": "Document",
                        "@id": "/api/documents/burgundy_leather_fabric",
                        "id": "burgundy_leather_fabric"
                    },
                    "sequence": 1,
                    "id": "80d20999-dd3c-4e92-a6fb-8a1b8098a71f",
                    "legacyId": 192
                },
                {
                    "@type": "Link",
                    "@id": "/api/links/eee13e7b-4fc6-4b30-a489-6a4a28d02f05",
                    "linkType": {
                        "@type": "LinkType",
                        "@id": "/api/link-types/link_type_ref_col___ref_col",
                        "id": "link_type_ref_col___ref_col"
                    },
                    "origin": {
                        "@type": "Document",
                        "@id": "/api/documents/color_reference_zoe_green_bucket_bag",
                        "id": "color_reference_zoe_green_bucket_bag"
                    },
                    "target": {
                        "@type": "Document",
                        "@id": "/api/documents/color_reference_zoe_burgundy_bucket_bag",
                        "id": "color_reference_zoe_burgundy_bucket_bag"
                    },
                    "sequence": 1,
                    "id": "eee13e7b-4fc6-4b30-a489-6a4a28d02f05",
                    "legacyId": 180
                },
                {
                    "@type": "Link",
                    "@id": "/api/links/824fd4eb-21df-45cb-9711-f84fc2260bbd",
                    "linkType": {
                        "@type": "LinkType",
                        "@id": "/api/link-types/link_type_look_color_reference",
                        "id": "link_type_look_color_reference"
                    },
                    "origin": {
                        "@type": "Document",
                        "@id": "/api/documents/look_working_girl",
                        "id": "look_working_girl"
                    },
                    "target": {
                        "@type": "Document",
                        "@id": "/api/documents/color_reference_zoe_burgundy_bucket_bag",
                        "id": "color_reference_zoe_burgundy_bucket_bag"
                    },
                    "sequence": 1,
                    "id": "824fd4eb-21df-45cb-9711-f84fc2260bbd",
                    "legacyId": 179
                }
            ],
            "assetLinks": [
                {
                    "@type": "Link",
                    "@id": "/api/links/20006a86-dc43-48ee-b53c-3fb57f245479",
                    "linkType": {
                        "@type": "LinkType",
                        "@id": "/api/link-types/article_images_media",
                        "id": "article_images_media"
                    },
                    "origin": {
                        "@type": "Document",
                        "@id": "/api/documents/color_reference_zoe_burgundy_bucket_bag",
                        "id": "color_reference_zoe_burgundy_bucket_bag"
                    },
                    "target": {
                        "@type": "Asset",
                        "@id": "/api/assets/f05f3032-cd16-4652-80cb-front",
                        "id": "f05f3032-cd16-4652-80cb-front"
                    },
                    "sequence": 1,
                    "id": "20006a86-dc43-48ee-b53c-3fb57f245479",
                    "legacyId": 172
                },
                {
                    "@type": "Link",
                    "@id": "/api/links/daf360af-5d44-4fe3-afbe-88063ea14ea9",
                    "linkType": {
                        "@type": "LinkType",
                        "@id": "/api/link-types/article_images_media",
                        "id": "article_images_media"
                    },
                    "origin": {
                        "@type": "Document",
                        "@id": "/api/documents/color_reference_zoe_burgundy_bucket_bag",
                        "id": "color_reference_zoe_burgundy_bucket_bag"
                    },
                    "target": {
                        "@type": "Asset",
                        "@id": "/api/assets/06f55e5f-1466-4c1f-9674-front",
                        "id": "06f55e5f-1466-4c1f-9674-front"
                    },
                    "sequence": 2,
                    "id": "daf360af-5d44-4fe3-afbe-88063ea14ea9",
                    "legacyId": 173
                },
                {
                    "@type": "Link",
                    "@id": "/api/links/b64f416f-fb38-4a0a-83c6-ce5bfd34d90a",
                    "linkType": {
                        "@type": "LinkType",
                        "@id": "/api/link-types/article_images_media",
                        "id": "article_images_media"
                    },
                    "origin": {
                        "@type": "Document",
                        "@id": "/api/documents/color_reference_zoe_burgundy_bucket_bag",
                        "id": "color_reference_zoe_burgundy_bucket_bag"
                    },
                    "target": {
                        "@type": "Asset",
                        "@id": "/api/assets/0af8491a-63c4-4c85-b950-front",
                        "id": "0af8491a-63c4-4c85-b950-front"
                    },
                    "sequence": 3,
                    "id": "b64f416f-fb38-4a0a-83c6-ce5bfd34d90a",
                    "legacyId": 174
                },
                {
                    "@type": "Link",
                    "@id": "/api/links/871c12d7-4374-47f5-9592-0494a4adf73b",
                    "linkType": {
                        "@type": "LinkType",
                        "@id": "/api/link-types/color_reference_worn_view",
                        "id": "color_reference_worn_view"
                    },
                    "origin": {
                        "@type": "Document",
                        "@id": "/api/documents/color_reference_zoe_burgundy_bucket_bag",
                        "id": "color_reference_zoe_burgundy_bucket_bag"
                    },
                    "target": {
                        "@type": "Asset",
                        "@id": "/api/assets/f05f3032-cd16-4652-80cb-front",
                        "id": "f05f3032-cd16-4652-80cb-front"
                    },
                    "sequence": 1,
                    "id": "871c12d7-4374-47f5-9592-0494a4adf73b",
                    "legacyId": 282
                }
            ],
            "workflows": [
                {
                    "@type": "Workflow",
                    "@id": "/api/workflows/workflow_product_workflow",
                    "steps": [
                        {
                            "id": "workflow_product_workflow_new",
                            "color": "turquoise",
                            "default": true,
                            "name": {
                                "en-US": "Init",
                                "fr-FR": "Nouveau"
                            },
                            "description": {
                                "en-US": null,
                                "fr-FR": null
                            }
                        }
                    ],
                    "transitions": [
                        {
                            "id": "workflow_product_workflow_enrichement_started",
                            "originStepId": "workflow_product_workflow_new",
                            "targetStepId": "workflow_product_workflow_enrichment",
                            "name": {
                                "fr-FR": "Contribution KO"
                            },
                            "permissionFeatures": [
                                "role_admin",
                                "role_manager",
                                "role_contributor",
                                "role_iconographer",
                                "role_reader"
                            ]
                        }
                    ],
                    "dateCreated": "2021-08-24T15:58:28+00:00",
                    "dateModified": "2023-03-13T16:33:05+00:00",
                    "id": "workflow_product_workflow"
                }
            ],
            "tags": [
                {
                    "@id": "/api/tags/color_reference_active_product",
                    "@type": "Tag",
                    "id": "color_reference_active_product"
                },
                {
                    "@id": "/api/tags/color_reference_description_ok",
                    "@type": "Tag",
                    "id": "color_reference_description_ok"
                },
                {
                    "@id": "/api/tags/color_reference_e_com_ok",
                    "@type": "Tag",
                    "id": "color_reference_e_com_ok"
                }
            ],
            "completenesses": {
                "completeness_collection_book": {
                    "en_GB": 1,
                    "en_US": 0.44,
                    "fr_FR": 1
                },
                "completeness_brand_portal": {
                    "en_GB": 1,
                    "en_US": 0.5,
                    "fr_FR": 1
                },
                "completeness_e_commerce": {
                    "en_GB": 0.89,
                    "en_US": 0.33,
                    "fr_FR": 0.89
                }
            },
            "variants": [
                {
                    "@type": "Variant",
                    "@id": "/api/variants/BGBAG",
                    "id": "BGBAG"
                }
            ],
            "mainAssetThumbnailUrl": "https://cdn.quable.com/education-developers/f05f3032-cd16-4652-80cb-front/thumbnail/tina-bag-burgundy-png.jpg",
            "dateCreated": "2021-08-24T07:57:42+00:00",
            "dateModified": "2023-11-16T14:03:42+00:00",
            "id": "color_reference_zoe_burgundy_bucket_bag",
            "legacyId": 26
        },
        {
            "@type": "Document",
            "@id": "/api/documents/color_reference_zoe_green_bucket_bag",
            "active": true,
            "attributes": {
                "cr_occasion": [
                    {
                        "id": "cr_evening",
                        "labels": {
                            "en_GB": "Evening",
                            "en_US": "Evening",
                            "fr_FR": "Soirée"
                        }
                    }
                ],
                "cr_seotitle": {
                    "en_GB": "Zoe Green Leather Bucket Bag",
                    "en_US": null,
                    "fr_FR": "Sac à main Zoe Vert en cuir"
                },
                "cr_color_code": [
                    {
                        "id": "cr_D2691E",
                        "labels": {
                            "en_GB": "# D2691E",
                            "en_US": "# D2691E",
                            "fr_FR": "# D2691E"
                        }
                    }
                ],
                "cr_color_name": [
                    {
                        "id": "cr_green",
                        "labels": {
                            "en_GB": "Green",
                            "en_US": "Green",
                            "fr_FR": "Vert"
                        }
                    }
                ],
                "cr_description": {
                    "en_GB": "This green leather handbag is definitely a must-have for a trendy evening look.",
                    "en_US": null,
                    "fr_FR": "Ce sac à main en cuir vert est assurément un must-have pour un look du soir tendance."
                },
                "cr_macro_color": [
                    {
                        "id": "cr_Green",
                        "labels": {
                            "en_GB": "Green",
                            "en_US": "Green",
                            "fr_FR": "Vert"
                        }
                    }
                ],
                "cr_marketplaces": [
                    {
                        "id": "sarenza",
                        "labels": {
                            "en_GB": "Sarenza",
                            "en_US": null,
                            "fr_FR": "sarenza"
                        }
                    },
                    {
                        "id": "veepee",
                        "labels": {
                            "en_GB": "Veepee",
                            "en_US": null,
                            "fr_FR": "veepee"
                        }
                    },
                    {
                        "id": "zalando",
                        "labels": {
                            "en_GB": "Zalando",
                            "en_US": null,
                            "fr_FR": "Zalando"
                        }
                    },
                    {
                        "id": "laredoute",
                        "labels": {
                            "en_GB": "La redoute",
                            "en_US": null,
                            "fr_FR": "La redoute"
                        }
                    }
                ],
                "cr_sarenza_desc": {
                    "en_GB": null,
                    "en_US": null,
                    "fr_FR": "<ul><li>Coupe : Normal</li><li>Dimensions : 24x19x14.5</li><li>Type de fermeture : CORDON</li><li>Matiere acc : CUIR</li><li>Type de bagagerie : SAC A MAIN</li></ul>"
                },
                "cr_veepee_title": {
                    "en_GB": "Zoe Green Leather Bucket Bag",
                    "en_US": null,
                    "fr_FR": "<p>Sac à main Zoe Vert en cuir</p>"
                },
                "cr_zalando_desc": {
                    "en_GB": null,
                    "en_US": null,
                    "fr_FR": "<ul><li>Coupe : Normal</li><li>Dimensions : 24x19x14.5</li><li>Type de fermeture : CORDON</li><li>Matiere acc : CUIR</li><li>Type de bagagerie : SAC A MAIN</li></ul>"
                },
                "cr_active_season": {
                    "en_GB": "AW21",
                    "en_US": null,
                    "fr_FR": "AW21"
                },
                "color_ref_is_active": [
                    {
                        "id": "active_yes",
                        "labels": {
                            "en_GB": "Yes",
                            "en_US": "Yes",
                            "fr_FR": "Oui"
                        }
                    }
                ],
                "cr_active_countries": [
                    {
                        "id": "cr_italy",
                        "labels": {
                            "en_GB": "Italy",
                            "en_US": "Italy",
                            "fr_FR": "Italie"
                        }
                    },
                    {
                        "id": "cr_france",
                        "labels": {
                            "en_GB": "France",
                            "en_US": "France",
                            "fr_FR": "France"
                        }
                    },
                    {
                        "id": "cr_portugal",
                        "labels": {
                            "en_GB": "Portugal",
                            "en_US": "Portugal",
                            "fr_FR": "Portugal"
                        }
                    }
                ],
                "color_reference_name": {
                    "en_GB": "Zoe Green Bucket Bag",
                    "en_US": null,
                    "fr_FR": "Sac Zoe Vert en cuir"
                },
                "cr_digital_description": {
                    "en_GB": "<p>This medium-sized handbag will accompany you everywhere in your daily life, worn on the shoulder or across the body thanks to its two adjustable handles enhanced by elegant silver metal finishes. Height 24.5 cm, Width 19 cm, Depth 14 cm.</p>",
                    "en_US": null,
                    "fr_FR": "<ul><li>Coupe : Normal</li><li>Dimensions : 24x19x14.5</li><li>Type de fermeture : CORDON</li><li>Matiere acc : CUIR</li><li>Type de bagagerie : SAC A MAIN</li></ul>"
                },
                "cr_seo_long_description": {
                    "en_GB": "<p>This green leather handbag is definitely a must-have for a trendy evening look. It is made in Italy in a grained leather with an original red colour, underlined by its bucket size tightened by matching ties on the front. This medium-sized handbag will accompany you everywhere in your daily life, worn on the shoulder or across the body thanks to its two adjustable handles enhanced by elegant silver metal finishes. Height 24.5 cm, Width 19 cm, Depth 14 cm.</p><p><br></p>",
                    "en_US": null,
                    "fr_FR": "<p>Ce sac à main en cuir vert est assurément un must-have pour un look du soir tendance. Il est confectionné en Italie dans un cuir grainé à la teinte verte originale, soulignée par son format seau resserré par des liens assortis sur le devant. Ce sac à main taille medium vous accompagnera partout au quotidien, porté à l'épaule ou en bandoulière grâce à ses deux anses réglables rehaussées de finitions élégantes en métal argenté. Hauteur 24,5 cm, Largeur 19 cm, Profondeur 14 cm</p>"
                },
                "cr_seo_short_description": {
                    "en_GB": "This green leather handbag is definitely a must-have for a trendy evening look.",
                    "en_US": null,
                    "fr_FR": "Ce sac à main en cuir vert est assurément un must-have pour un look du soir tendance."
                }
            },
            "documentType": {
                "@id": "/api/document-types/color_reference",
                "@type": "DocumentType",
                "default": false,
                "id": "color_reference"
            },
            "attributeSet": null,
            "classifications": [
                {
                    "@type": "Classification",
                    "@id": "/api/classifications/eco_612fa04e11547",
                    "catalogId": "eco",
                    "id": "eco_612fa04e11547",
                    "legacyId": 141
                },
                {
                    "@type": "Classification",
                    "@id": "/api/classifications/classification_business_bagsw1",
                    "catalogId": null,
                    "id": "classification_business_bagsw1",
                    "legacyId": 1221
                },
                {
                    "@type": "Classification",
                    "@id": "/api/classifications/lrd_6141c6c72751f",
                    "catalogId": "lrd",
                    "id": "lrd_6141c6c72751f",
                    "legacyId": 1425
                },
                {
                    "@type": "Classification",
                    "@id": "/api/classifications/vpe_6141c6da77a38",
                    "catalogId": "vpe",
                    "id": "vpe_6141c6da77a38",
                    "legacyId": 1426
                },
                {
                    "@type": "Classification",
                    "@id": "/api/classifications/eco_6141c96d15a1a",
                    "catalogId": "eco",
                    "id": "eco_6141c96d15a1a",
                    "legacyId": 1443
                },
                {
                    "@type": "Classification",
                    "@id": "/api/classifications/eco_612fa04e11547",
                    "catalogId": "eco",
                    "id": "eco_612fa04e11547",
                    "legacyId": 141
                },
                {
                    "@type": "Classification",
                    "@id": "/api/classifications/lrd_6141c6c72751f",
                    "catalogId": "lrd",
                    "id": "lrd_6141c6c72751f",
                    "legacyId": 1425
                },
                {
                    "@type": "Classification",
                    "@id": "/api/classifications/vpe_6141c6da77a38",
                    "catalogId": "vpe",
                    "id": "vpe_6141c6da77a38",
                    "legacyId": 1426
                },
                {
                    "@type": "Classification",
                    "@id": "/api/classifications/eco_6141c96d15a1a",
                    "catalogId": "eco",
                    "id": "eco_6141c96d15a1a",
                    "legacyId": 1443
                }
            ],
            "documentLinks": [
                {
                    "@type": "Link",
                    "@id": "/api/links/adbb707f-8b0e-41b4-9cc4-5b7b8ef8c8ce",
                    "linkType": {
                        "@type": "LinkType",
                        "@id": "/api/link-types/link_type_reference_reference_color",
                        "id": "link_type_reference_reference_color"
                    },
                    "origin": {
                        "@type": "Document",
                        "@id": "/api/documents/reference_zoe_bucket_bag",
                        "id": "reference_zoe_bucket_bag"
                    },
                    "target": {
                        "@type": "Document",
                        "@id": "/api/documents/color_reference_zoe_green_bucket_bag",
                        "id": "color_reference_zoe_green_bucket_bag"
                    },
                    "sequence": 1,
                    "id": "adbb707f-8b0e-41b4-9cc4-5b7b8ef8c8ce",
                    "legacyId": 177
                },
                {
                    "@type": "Link",
                    "@id": "/api/links/eee13e7b-4fc6-4b30-a489-6a4a28d02f05",
                    "linkType": {
                        "@type": "LinkType",
                        "@id": "/api/link-types/link_type_ref_col___ref_col",
                        "id": "link_type_ref_col___ref_col"
                    },
                    "origin": {
                        "@type": "Document",
                        "@id": "/api/documents/color_reference_zoe_green_bucket_bag",
                        "id": "color_reference_zoe_green_bucket_bag"
                    },
                    "target": {
                        "@type": "Document",
                        "@id": "/api/documents/color_reference_zoe_burgundy_bucket_bag",
                        "id": "color_reference_zoe_burgundy_bucket_bag"
                    },
                    "sequence": 1,
                    "id": "eee13e7b-4fc6-4b30-a489-6a4a28d02f05",
                    "legacyId": 180
                }
            ],
            "assetLinks": [
                {
                    "@type": "Link",
                    "@id": "/api/links/1e8559cb-848c-4737-ae72-46760660298b",
                    "linkType": {
                        "@type": "LinkType",
                        "@id": "/api/link-types/article_images_media",
                        "id": "article_images_media"
                    },
                    "origin": {
                        "@type": "Document",
                        "@id": "/api/documents/color_reference_zoe_green_bucket_bag",
                        "id": "color_reference_zoe_green_bucket_bag"
                    },
                    "target": {
                        "@type": "Asset",
                        "@id": "/api/assets/806d01c0-119e-4ae9-bcdb-front",
                        "id": "806d01c0-119e-4ae9-bcdb-front"
                    },
                    "sequence": 1,
                    "id": "1e8559cb-848c-4737-ae72-46760660298b",
                    "legacyId": 168
                },
                {
                    "@type": "Link",
                    "@id": "/api/links/12c962dd-3651-48cb-84f7-bf41c28e1e7f",
                    "linkType": {
                        "@type": "LinkType",
                        "@id": "/api/link-types/article_images_media",
                        "id": "article_images_media"
                    },
                    "origin": {
                        "@type": "Document",
                        "@id": "/api/documents/color_reference_zoe_green_bucket_bag",
                        "id": "color_reference_zoe_green_bucket_bag"
                    },
                    "target": {
                        "@type": "Asset",
                        "@id": "/api/assets/6e975b70-f86f-4065-938c-front",
                        "id": "6e975b70-f86f-4065-938c-front"
                    },
                    "sequence": 2,
                    "id": "12c962dd-3651-48cb-84f7-bf41c28e1e7f",
                    "legacyId": 169
                },
                {
                    "@type": "Link",
                    "@id": "/api/links/e8f00d9c-3e62-4968-b433-7da93863f5c9",
                    "linkType": {
                        "@type": "LinkType",
                        "@id": "/api/link-types/article_images_media",
                        "id": "article_images_media"
                    },
                    "origin": {
                        "@type": "Document",
                        "@id": "/api/documents/color_reference_zoe_green_bucket_bag",
                        "id": "color_reference_zoe_green_bucket_bag"
                    },
                    "target": {
                        "@type": "Asset",
                        "@id": "/api/assets/1c5f2665-9dbd-452b-ba68-front",
                        "id": "1c5f2665-9dbd-452b-ba68-front"
                    },
                    "sequence": 3,
                    "id": "e8f00d9c-3e62-4968-b433-7da93863f5c9",
                    "legacyId": 170
                },
                {
                    "@type": "Link",
                    "@id": "/api/links/f3625c55-221f-490d-a4c9-bd01baaa3fd5",
                    "linkType": {
                        "@type": "LinkType",
                        "@id": "/api/link-types/article_images_media",
                        "id": "article_images_media"
                    },
                    "origin": {
                        "@type": "Document",
                        "@id": "/api/documents/color_reference_zoe_green_bucket_bag",
                        "id": "color_reference_zoe_green_bucket_bag"
                    },
                    "target": {
                        "@type": "Asset",
                        "@id": "/api/assets/32ca4f26-4dbd-4d27-a02e-front",
                        "id": "32ca4f26-4dbd-4d27-a02e-front"
                    },
                    "sequence": 4,
                    "id": "f3625c55-221f-490d-a4c9-bd01baaa3fd5",
                    "legacyId": 171
                },
                {
                    "@type": "Link",
                    "@id": "/api/links/9b1aedfb-2f84-46a7-a890-6d38d95df1ff",
                    "linkType": {
                        "@type": "LinkType",
                        "@id": "/api/link-types/color_reference_worn_view",
                        "id": "color_reference_worn_view"
                    },
                    "origin": {
                        "@type": "Document",
                        "@id": "/api/documents/color_reference_zoe_green_bucket_bag",
                        "id": "color_reference_zoe_green_bucket_bag"
                    },
                    "target": {
                        "@type": "Asset",
                        "@id": "/api/assets/806d01c0-119e-4ae9-bcdb-front",
                        "id": "806d01c0-119e-4ae9-bcdb-front"
                    },
                    "sequence": 1,
                    "id": "9b1aedfb-2f84-46a7-a890-6d38d95df1ff",
                    "legacyId": 281
                }
            ],
            "workflows": [
                {
                    "@type": "Workflow",
                    "@id": "/api/workflows/workflow_product_workflow",
                    "steps": [
                        {
                            "id": "workflow_product_workflow_new",
                            "color": "turquoise",
                            "default": true,
                            "name": {
                                "en-US": "Init",
                                "fr-FR": "Nouveau"
                            },
                            "description": {
                                "en-US": null,
                                "fr-FR": null
                            }
                        }
                    ],
                    "transitions": [
                        {
                            "id": "workflow_product_workflow_enrichement_started",
                            "originStepId": "workflow_product_workflow_new",
                            "targetStepId": "workflow_product_workflow_enrichment",
                            "name": {
                                "fr-FR": "Contribution KO"
                            },
                            "permissionFeatures": [
                                "role_admin",
                                "role_manager",
                                "role_contributor",
                                "role_iconographer",
                                "role_reader"
                            ]
                        }
                    ],
                    "dateCreated": "2021-08-24T15:58:28+00:00",
                    "dateModified": "2023-03-13T16:33:05+00:00",
                    "id": "workflow_product_workflow"
                }
            ],
            "tags": [
                {
                    "@id": "/api/tags/color_reference_active_product",
                    "@type": "Tag",
                    "id": "color_reference_active_product"
                },
                {
                    "@id": "/api/tags/color_reference_description_ok",
                    "@type": "Tag",
                    "id": "color_reference_description_ok"
                },
                {
                    "@id": "/api/tags/color_reference_e_com_ok",
                    "@type": "Tag",
                    "id": "color_reference_e_com_ok"
                }
            ],
            "completenesses": {
                "completeness_collection_book": {
                    "en_GB": 0.89,
                    "en_US": 0.22,
                    "fr_FR": 0.89
                },
                "completeness_brand_portal": {
                    "en_GB": 1,
                    "en_US": 0.3,
                    "fr_FR": 1
                },
                "completeness_e_commerce": {
                    "en_GB": 0.89,
                    "en_US": 0.11,
                    "fr_FR": 0.89
                }
            },
            "variants": [
                {
                    "@type": "Variant",
                    "@id": "/api/variants/GR-Bag",
                    "id": "GR-Bag"
                }
            ],
            "mainAssetThumbnailUrl": "https://cdn.quable.com/education-developers/806d01c0-119e-4ae9-bcdb-front/thumbnail/tina-bag-green-png.jpg",
            "dateCreated": "2021-08-24T08:07:44+00:00",
            "dateModified": "2023-03-30T06:01:16+00:00",
            "id": "color_reference_zoe_green_bucket_bag",
            "legacyId": 27
        },
        {
            "@type": "Document",
            "@id": "/api/documents/reference_zoe_bucket_bag",
            "active": true,
            "attributes": {
                "r_brand": [
                    {
                        "id": "brand2",
                        "labels": {
                            "en_GB": "Brand 2",
                            "en_US": "Brand 2",
                            "fr_FR": "Marque 2"
                        }
                    }
                ],
                "r_width": 14,
                "r_height": 19,
                "r_season": [
                    {
                        "id": "aw21",
                        "labels": {
                            "en_GB": "AW21",
                            "en_US": "AW21",
                            "fr_FR": "AH21"
                        }
                    }
                ],
                "r_status": [
                    {
                        "id": "ref_active",
                        "labels": {
                            "en_GB": "Active",
                            "en_US": "Active",
                            "fr_FR": "Actif"
                        }
                    }
                ],
                "r_lg_type": [
                    {
                        "id": "handbag",
                        "labels": {
                            "en_GB": "Handbag",
                            "en_US": null,
                            "fr_FR": "Sac à main"
                        }
                    }
                ],
                "r_made_in": [
                    {
                        "id": "france",
                        "labels": {
                            "en_GB": "France",
                            "en_US": "France",
                            "fr_FR": "France"
                        }
                    }
                ],
                "r_washing": [
                    {
                        "id": "handwashing",
                        "labels": {
                            "en_GB": "Hand wahsing",
                            "en_US": "Hand wahsing",
                            "fr_FR": "Lavage à la main"
                        }
                    }
                ],
                "r_supplier": [
                    {
                        "id": "supplier2",
                        "labels": {
                            "en_GB": "Supplier 2",
                            "en_US": "Supplier 2",
                            "fr_FR": "Fournisseur 2"
                        }
                    }
                ],
                "r_long_name": {
                    "en_GB": "Zoe Leather Bucket Bag",
                    "en_US": null,
                    "fr_FR": "Sac à main Zoe en cuir"
                },
                "r_continuity": [
                    {
                        "id": "r_permanent",
                        "labels": {
                            "en_GB": "Permanent",
                            "en_US": "Permanent",
                            "fr_FR": "Permanent"
                        }
                    }
                ],
                "r_drying_type": [
                    {
                        "id": "notrumbledry",
                        "labels": {
                            "en_GB": "No trumble dry",
                            "en_US": "No trumble dry",
                            "fr_FR": "Pas de nettoyage à sec"
                        }
                    }
                ],
                "r_maintenance": {
                    "en_GB": "Clean with a soft cloth.",
                    "en_US": null,
                    "fr_FR": "Nettoyer avec un chiffon doux."
                },
                "reference_name": {
                    "en_GB": "Zoe Bucket Bag",
                    "en_US": null,
                    "fr_FR": "Sac à main Zoe"
                },
                "r_main_material": {
                    "en_GB": "Lining: 100% Cotton\nOuter shell: 100% Calf leather",
                    "en_US": null,
                    "fr_FR": "Doublure : 100 % coton \nDoublure extérieure : 100 % cuir de veau"
                },
                "r_manufacturing_type": [
                    {
                        "id": "hand_sewn",
                        "labels": {
                            "en_GB": "Hand sewn",
                            "en_US": "Hand sewn",
                            "fr_FR": "Cousu main"
                        }
                    }
                ]
            },
            "documentType": {
                "@id": "/api/document-types/reference",
                "@type": "DocumentType",
                "default": true,
                "id": "reference"
            },
            "attributeSet": {
                "@id": "/api/attribute-sets/att_set_leathergoods",
                "@type": "AttributeSet",
                "id": "att_set_leathergoods"
            },
            "classifications": [
                {
                    "@type": "Classification",
                    "@id": "/api/classifications/classification_business_bagsw1",
                    "catalogId": null,
                    "id": "classification_business_bagsw1",
                    "legacyId": 1221
                }
            ],
            "documentLinks": [
                {
                    "@type": "Link",
                    "@id": "/api/links/adbb707f-8b0e-41b4-9cc4-5b7b8ef8c8ce",
                    "linkType": {
                        "@type": "LinkType",
                        "@id": "/api/link-types/link_type_reference_reference_color",
                        "id": "link_type_reference_reference_color"
                    },
                    "origin": {
                        "@type": "Document",
                        "@id": "/api/documents/reference_zoe_bucket_bag",
                        "id": "reference_zoe_bucket_bag"
                    },
                    "target": {
                        "@type": "Document",
                        "@id": "/api/documents/color_reference_zoe_green_bucket_bag",
                        "id": "color_reference_zoe_green_bucket_bag"
                    },
                    "sequence": 1,
                    "id": "adbb707f-8b0e-41b4-9cc4-5b7b8ef8c8ce",
                    "legacyId": 177
                },
                {
                    "@type": "Link",
                    "@id": "/api/links/b5eee9fd-5496-4fa5-832b-ebd683e81e6d",
                    "linkType": {
                        "@type": "LinkType",
                        "@id": "/api/link-types/link_type_reference_reference_color",
                        "id": "link_type_reference_reference_color"
                    },
                    "origin": {
                        "@type": "Document",
                        "@id": "/api/documents/reference_zoe_bucket_bag",
                        "id": "reference_zoe_bucket_bag"
                    },
                    "target": {
                        "@type": "Document",
                        "@id": "/api/documents/color_reference_zoe_burgundy_bucket_bag",
                        "id": "color_reference_zoe_burgundy_bucket_bag"
                    },
                    "sequence": 2,
                    "id": "b5eee9fd-5496-4fa5-832b-ebd683e81e6d",
                    "legacyId": 178
                }
            ],
            "assetLinks": [
                {
                    "@type": "Link",
                    "@id": "/api/links/5bbb6763-6de5-40f8-af68-7ce047c1ed78",
                    "linkType": {
                        "@type": "LinkType",
                        "@id": "/api/link-types/article_images_media",
                        "id": "article_images_media"
                    },
                    "origin": {
                        "@type": "Document",
                        "@id": "/api/documents/reference_zoe_bucket_bag",
                        "id": "reference_zoe_bucket_bag"
                    },
                    "target": {
                        "@type": "Asset",
                        "@id": "/api/assets/32d9abd7-6769-443a-a2db-front",
                        "id": "32d9abd7-6769-443a-a2db-front"
                    },
                    "sequence": 1,
                    "id": "5bbb6763-6de5-40f8-af68-7ce047c1ed78",
                    "legacyId": 161
                }
            ],
            "workflows": [],
            "tags": [
                {
                    "@id": "/api/tags/all_documents_new_6130edc94b136",
                    "@type": "Tag",
                    "id": "all_documents_new_6130edc94b136"
                }
            ],
            "completenesses": {
                "completeness_characteristics_and_care": {
                    "en_GB": 0.7,
                    "en_US": 0.5,
                    "fr_FR": 0.7
                }
            },
            "variants": [],
            "mainAssetThumbnailUrl": "https://cdn.quable.com/education-developers/32d9abd7-6769-443a-a2db-front/thumbnail/bucketbag-vector-png.jpg",
            "dateCreated": "2021-08-24T07:50:32+00:00",
            "dateModified": "2023-06-23T10:28:53+00:00",
            "id": "reference_zoe_bucket_bag",
            "legacyId": 25
        },
        {
            "@type": "Document",
            "@id": "/api/documents/material_light_beige",
            "active": true,
            "attributes": {
                "mat_origine": [
                    {
                        "id": "mat_animal",
                        "labels": {
                            "en_GB": "Animal",
                            "en_US": "Animal",
                            "fr_FR": "Animale"
                        }
                    }
                ],
                "material_name": {
                    "en_GB": "Light beige wool",
                    "en_US": null,
                    "fr_FR": "Laine beige claire"
                },
                "mat_color_code": [
                    {
                        "id": "ffffff",
                        "labels": {
                            "en_GB": "#FFFFFF",
                            "en_US": "#FFFFFF",
                            "fr_FR": "#FFFFFF"
                        }
                    }
                ],
                "mat_color_name": [
                    {
                        "id": "white",
                        "labels": {
                            "en_GB": "White",
                            "en_US": "White",
                            "fr_FR": "Blanc"
                        }
                    }
                ],
                "mat_country_orig": [
                    {
                        "id": "mat_china",
                        "labels": {
                            "en_GB": "China",
                            "en_US": "China",
                            "fr_FR": "Chine"
                        }
                    }
                ],
                "mat_color_description": {
                    "en_GB": "Light beige wool",
                    "en_US": null,
                    "fr_FR": "Beige/ivoire"
                },
                "mat_composition_material_1": [
                    {
                        "id": "wool",
                        "labels": {
                            "en_GB": "Wool",
                            "en_US": "Wool",
                            "fr_FR": "Laine"
                        }
                    }
                ],
                "mat_composition_material_2": [
                    {
                        "id": "polyamide2",
                        "labels": {
                            "en_GB": "Polyamide",
                            "en_US": "Polyamide",
                            "fr_FR": "Polyamide"
                        }
                    }
                ],
                "mat_perc_composition_material_1": 99,
                "mat_perc_composition_material_2": 1
            },
            "documentType": {
                "@id": "/api/document-types/material",
                "@type": "DocumentType",
                "default": false,
                "id": "material"
            },
            "attributeSet": null,
            "classifications": [
                {
                    "@type": "Classification",
                    "@id": "/api/classifications/classification_materials",
                    "catalogId": null,
                    "id": "classification_materials",
                    "legacyId": 129
                }
            ],
            "documentLinks": [
                {
                    "@type": "Link",
                    "@id": "/api/links/1cef4866-080c-4fa2-a896-dce5f84319df",
                    "linkType": {
                        "@type": "LinkType",
                        "@id": "/api/link-types/link_type_color_reference___material",
                        "id": "link_type_color_reference___material"
                    },
                    "origin": {
                        "@type": "Document",
                        "@id": "/api/documents/color_reference_lb_coat",
                        "id": "color_reference_lb_coat"
                    },
                    "target": {
                        "@type": "Document",
                        "@id": "/api/documents/material_light_beige",
                        "id": "material_light_beige"
                    },
                    "sequence": 2,
                    "id": "1cef4866-080c-4fa2-a896-dce5f84319df",
                    "legacyId": 244
                }
            ],
            "assetLinks": [
                {
                    "@type": "Link",
                    "@id": "/api/links/fb4c9c20-0030-4e30-b7ae-4500a81dc299",
                    "linkType": {
                        "@type": "LinkType",
                        "@id": "/api/link-types/article_images_media",
                        "id": "article_images_media"
                    },
                    "origin": {
                        "@type": "Document",
                        "@id": "/api/documents/material_light_beige",
                        "id": "material_light_beige"
                    },
                    "target": {
                        "@type": "Asset",
                        "@id": "/api/assets/09336ddf-37db-4904-b831-front",
                        "id": "09336ddf-37db-4904-b831-front"
                    },
                    "sequence": 1,
                    "id": "fb4c9c20-0030-4e30-b7ae-4500a81dc299",
                    "legacyId": 239
                }
            ],
            "workflows": [],
            "tags": [
                {
                    "@id": "/api/tags/all_documents_new_6130edc940e9b",
                    "@type": "Tag",
                    "id": "all_documents_new_6130edc940e9b"
                }
            ],
            "completenesses": [],
            "variants": [],
            "mainAssetThumbnailUrl": "https://cdn.quable.com/education-developers/09336ddf-37db-4904-b831-front/thumbnail/lb-wool-png.jpg",
            "dateCreated": "2021-09-06T14:24:00+00:00",
            "dateModified": "2021-09-07T13:58:28+00:00",
            "id": "material_light_beige",
            "legacyId": 38
        },
        {
            "@type": "Document",
            "@id": "/api/documents/graphic_blue_fabric",
            "active": true,
            "attributes": {
                "mat_origine": [
                    {
                        "id": "mat_synthetic",
                        "labels": {
                            "en_GB": "Synthetic",
                            "en_US": "Synthetic",
                            "fr_FR": "Synthétique"
                        }
                    }
                ],
                "material_name": {
                    "en_GB": "Graphic blue fabric",
                    "en_US": null,
                    "fr_FR": null
                },
                "mat_color_name": [
                    {
                        "id": "blue",
                        "labels": {
                            "en_GB": "Blue",
                            "en_US": "Blue",
                            "fr_FR": "Bleu"
                        }
                    }
                ],
                "mat_country_orig": [
                    {
                        "id": "mat_turkey",
                        "labels": {
                            "en_GB": "Turkey",
                            "en_US": "Turkey",
                            "fr_FR": "Turquie"
                        }
                    }
                ],
                "mat_color_description": {
                    "en_GB": "Navy blue",
                    "en_US": null,
                    "fr_FR": null
                },
                "mat_composition_material_1": [
                    {
                        "id": "cotton",
                        "labels": {
                            "en_GB": "Cotton",
                            "en_US": "Cotton",
                            "fr_FR": "Coton"
                        }
                    }
                ],
                "mat_composition_material_2": [
                    {
                        "id": "wool2",
                        "labels": {
                            "en_GB": "Wool",
                            "en_US": "Wool",
                            "fr_FR": "Laine"
                        }
                    }
                ],
                "mat_perc_composition_material_1": 70,
                "mat_perc_composition_material_2": 30
            },
            "documentType": {
                "@id": "/api/document-types/material",
                "@type": "DocumentType",
                "default": false,
                "id": "material"
            },
            "attributeSet": null,
            "classifications": [
                {
                    "@type": "Classification",
                    "@id": "/api/classifications/classification_materials",
                    "catalogId": null,
                    "id": "classification_materials",
                    "legacyId": 129
                }
            ],
            "documentLinks": [],
            "assetLinks": [
                {
                    "@type": "Link",
                    "@id": "/api/links/f1e1e70c-0526-493a-aa87-5adf9b2df5ad",
                    "linkType": {
                        "@type": "LinkType",
                        "@id": "/api/link-types/article_images_media",
                        "id": "article_images_media"
                    },
                    "origin": {
                        "@type": "Document",
                        "@id": "/api/documents/graphic_blue_fabric",
                        "id": "graphic_blue_fabric"
                    },
                    "target": {
                        "@type": "Asset",
                        "@id": "/api/assets/87ec1c6a-4fc6-4de4-b039-front",
                        "id": "87ec1c6a-4fc6-4de4-b039-front"
                    },
                    "sequence": 1,
                    "id": "f1e1e70c-0526-493a-aa87-5adf9b2df5ad",
                    "legacyId": 151
                }
            ],
            "workflows": [],
            "tags": [
                {
                    "@id": "/api/tags/all_documents_new_6130edc940e9b",
                    "@type": "Tag",
                    "id": "all_documents_new_6130edc940e9b"
                }
            ],
            "completenesses": [],
            "variants": [],
            "mainAssetThumbnailUrl": "https://cdn.quable.com/education-developers/87ec1c6a-4fc6-4de4-b039-front/thumbnail/capture-d-e-cran-2021-08-23-a-18-23-58-png.jpg",
            "dateCreated": "2021-08-23T16:24:36+00:00",
            "dateModified": "2021-09-02T15:37:05+00:00",
            "id": "graphic_blue_fabric",
            "legacyId": 23
        },
        {
            "@type": "Document",
            "@id": "/api/documents/blue-skirt",
            "active": true,
            "attributes": {
                "r_long_name": {
                    "en_GB": "Trendy blue skirt",
                    "en_US": "Trendy blue skirt",
                    "fr_FR": null
                },
                "reference_name": {
                    "en_GB": "Blue skirt",
                    "en_US": "Blue skirt",
                    "fr_FR": "Jupe bleue"
                }
            },
            "documentType": {
                "@id": "/api/document-types/reference",
                "@type": "DocumentType",
                "default": true,
                "id": "reference"
            },
            "attributeSet": null,
            "classifications": [
                {
                    "@type": "Classification",
                    "@id": "/api/classifications/classification_ready_to_wearw5",
                    "catalogId": null,
                    "id": "classification_ready_to_wearw5",
                    "legacyId": 1302
                }
            ],
            "documentLinks": [],
            "assetLinks": [],
            "workflows": [],
            "tags": [
                {
                    "@id": "/api/tags/all_documents_new_6130edc94b136",
                    "@type": "Tag",
                    "id": "all_documents_new_6130edc94b136"
                }
            ],
            "completenesses": {
                "completeness_characteristics_and_care": {
                    "en_GB": 0,
                    "en_US": 0,
                    "fr_FR": 0
                }
            },
            "variants": [],
            "mainAssetThumbnailUrl": null,
            "dateCreated": "2023-09-18T14:24:27+00:00",
            "dateModified": "2023-09-18T14:24:29+00:00",
            "id": "blue-skirt",
            "legacyId": 51
        },
        {
            "@type": "Document",
            "@id": "/api/documents/color_reference_chemise_col_mao_bleue",
            "active": true,
            "attributes": {
                "cr_occasion": [
                    {
                        "id": "cr_ceremony",
                        "labels": {
                            "en_GB": "Ceremony",
                            "en_US": "Ceremony",
                            "fr_FR": "Cérémonie"
                        }
                    },
                    {
                        "id": "cr_evening",
                        "labels": {
                            "en_GB": "Evening",
                            "en_US": "Evening",
                            "fr_FR": "Soirée"
                        }
                    }
                ],
                "cr_color_code": [
                    {
                        "id": "cr_color_0000FF",
                        "labels": {
                            "en_GB": "# 0000FF",
                            "en_US": "# 0000FF",
                            "fr_FR": "# 0000FF"
                        }
                    }
                ],
                "cr_color_name": [
                    {
                        "id": "cr_coral",
                        "labels": {
                            "en_GB": "Coral",
                            "en_US": "Coral",
                            "fr_FR": "Corail"
                        }
                    }
                ],
                "cr_macro_color": [
                    {
                        "id": "cr_Silver",
                        "labels": {
                            "en_GB": "Silver",
                            "en_US": "Silver",
                            "fr_FR": "Argent"
                        }
                    }
                ],
                "color_ref_is_active": [
                    {
                        "id": "active_no",
                        "labels": {
                            "en_GB": "No",
                            "en_US": "No",
                            "fr_FR": "Non"
                        }
                    }
                ],
                "color_reference_name": {
                    "en_GB": null,
                    "en_US": null,
                    "fr_FR": "Chemise col mao bleue"
                }
            },
            "documentType": {
                "@id": "/api/document-types/color_reference",
                "@type": "DocumentType",
                "default": false,
                "id": "color_reference"
            },
            "attributeSet": {
                "@id": "/api/attribute-sets/attr_set_clothes_color_reference",
                "@type": "AttributeSet",
                "id": "attr_set_clothes_color_reference"
            },
            "classifications": [
                {
                    "@type": "Classification",
                    "@id": "/api/classifications/classification_shirtsm3",
                    "catalogId": null,
                    "id": "classification_shirtsm3",
                    "legacyId": 1282
                }
            ],
            "documentLinks": [],
            "assetLinks": [],
            "workflows": [
                {
                    "@type": "Workflow",
                    "@id": "/api/workflows/workflow_product_workflow",
                    "steps": [
                        {
                            "id": "workflow_product_workflow_new",
                            "color": "turquoise",
                            "default": true,
                            "name": {
                                "en-US": "Init",
                                "fr-FR": "Nouveau"
                            },
                            "description": {
                                "en-US": null,
                                "fr-FR": null
                            }
                        }
                    ],
                    "transitions": [
                        {
                            "id": "workflow_product_workflow_enrichement_started",
                            "originStepId": "workflow_product_workflow_new",
                            "targetStepId": "workflow_product_workflow_enrichment",
                            "name": {
                                "fr-FR": "Contribution KO"
                            },
                            "permissionFeatures": [
                                "role_admin",
                                "role_manager",
                                "role_contributor",
                                "role_iconographer",
                                "role_reader"
                            ]
                        }
                    ],
                    "dateCreated": "2021-08-24T15:58:28+00:00",
                    "dateModified": "2023-03-13T16:33:05+00:00",
                    "id": "workflow_product_workflow"
                }
            ],
            "tags": [
                {
                    "@id": "/api/tags/color_reference_description_nok",
                    "@type": "Tag",
                    "id": "color_reference_description_nok"
                },
                {
                    "@id": "/api/tags/color_reference_e_com_nok",
                    "@type": "Tag",
                    "id": "color_reference_e_com_nok"
                }
            ],
            "completenesses": {
                "completeness_collection_book": {
                    "en_GB": 0.3,
                    "en_US": 0.3,
                    "fr_FR": 0.4
                },
                "completeness_brand_portal": {
                    "en_GB": 0.27,
                    "en_US": 0.27,
                    "fr_FR": 0.36
                },
                "completeness_e_commerce": {
                    "en_GB": 0.1,
                    "en_US": 0.1,
                    "fr_FR": 0.2
                }
            },
            "variants": [],
            "mainAssetThumbnailUrl": null,
            "dateCreated": "2023-08-22T08:28:28+00:00",
            "dateModified": "2023-11-16T14:03:41+00:00",
            "id": "color_reference_chemise_col_mao_bleue",
            "legacyId": 46
        },
        {
            "@type": "Document",
            "@id": "/api/documents/burgundy_leather_fabric",
            "active": true,
            "attributes": {
                "mat_origine": [
                    {
                        "id": "mat_animal",
                        "labels": {
                            "en_GB": "Animal",
                            "en_US": "Animal",
                            "fr_FR": "Animale"
                        }
                    }
                ],
                "material_name": {
                    "en_GB": "Burgundy leather fabric",
                    "en_US": null,
                    "fr_FR": "Cuir bordeaux"
                },
                "mat_color_name": [
                    {
                        "id": "red",
                        "labels": {
                            "en_GB": "Red",
                            "en_US": "Red",
                            "fr_FR": "Rouge"
                        }
                    }
                ],
                "mat_country_orig": [
                    {
                        "id": "mat_portugal",
                        "labels": {
                            "en_GB": "Portugal",
                            "en_US": "Portugal",
                            "fr_FR": "Portugal"
                        }
                    }
                ],
                "mat_color_description": {
                    "en_GB": "Burgundy",
                    "en_US": null,
                    "fr_FR": "Bordeaux"
                },
                "mat_composition_material_1": [
                    {
                        "id": "leather",
                        "labels": {
                            "en_GB": "Leather",
                            "en_US": "Leather",
                            "fr_FR": "Cuir"
                        }
                    }
                ],
                "mat_composition_material_2": [
                    {
                        "id": "cotton2",
                        "labels": {
                            "en_GB": "Cotton",
                            "en_US": "Cotton",
                            "fr_FR": "Coton"
                        }
                    }
                ],
                "mat_perc_composition_material_1": 90,
                "mat_perc_composition_material_2": 10
            },
            "documentType": {
                "@id": "/api/document-types/material",
                "@type": "DocumentType",
                "default": false,
                "id": "material"
            },
            "attributeSet": null,
            "classifications": [
                {
                    "@type": "Classification",
                    "@id": "/api/classifications/classification_materials",
                    "catalogId": null,
                    "id": "classification_materials",
                    "legacyId": 129
                }
            ],
            "documentLinks": [
                {
                    "@type": "Link",
                    "@id": "/api/links/80d20999-dd3c-4e92-a6fb-8a1b8098a71f",
                    "linkType": {
                        "@type": "LinkType",
                        "@id": "/api/link-types/link_type_color_reference___material",
                        "id": "link_type_color_reference___material"
                    },
                    "origin": {
                        "@type": "Document",
                        "@id": "/api/documents/color_reference_zoe_burgundy_bucket_bag",
                        "id": "color_reference_zoe_burgundy_bucket_bag"
                    },
                    "target": {
                        "@type": "Document",
                        "@id": "/api/documents/burgundy_leather_fabric",
                        "id": "burgundy_leather_fabric"
                    },
                    "sequence": 1,
                    "id": "80d20999-dd3c-4e92-a6fb-8a1b8098a71f",
                    "legacyId": 192
                }
            ],
            "assetLinks": [
                {
                    "@type": "Link",
                    "@id": "/api/links/c70f045f-f284-4a05-a52a-07f3053e77e7",
                    "linkType": {
                        "@type": "LinkType",
                        "@id": "/api/link-types/article_images_media",
                        "id": "article_images_media"
                    },
                    "origin": {
                        "@type": "Document",
                        "@id": "/api/documents/burgundy_leather_fabric",
                        "id": "burgundy_leather_fabric"
                    },
                    "target": {
                        "@type": "Asset",
                        "@id": "/api/assets/df503758-f6dc-4a97-b858-front",
                        "id": "df503758-f6dc-4a97-b858-front"
                    },
                    "sequence": 1,
                    "id": "c70f045f-f284-4a05-a52a-07f3053e77e7",
                    "legacyId": 189
                }
            ],
            "workflows": [],
            "tags": [
                {
                    "@id": "/api/tags/all_documents_new_6130edc940e9b",
                    "@type": "Tag",
                    "id": "all_documents_new_6130edc940e9b"
                }
            ],
            "completenesses": [],
            "variants": [],
            "mainAssetThumbnailUrl": "https://cdn.quable.com/education-developers/df503758-f6dc-4a97-b858-front/thumbnail/burgundy-leather-png.jpg",
            "dateCreated": "2021-08-25T08:34:11+00:00",
            "dateModified": "2021-09-07T13:58:28+00:00",
            "id": "burgundy_leather_fabric",
            "legacyId": 30
        },
        {
            "@type": "Document",
            "@id": "/api/documents/material_check_wool",
            "active": true,
            "attributes": {
                "mat_origine": [
                    {
                        "id": "mat_animal",
                        "labels": {
                            "en_GB": "Animal",
                            "en_US": "Animal",
                            "fr_FR": "Animale"
                        }
                    }
                ],
                "material_name": {
                    "en_GB": "Check black and white wool",
                    "en_US": null,
                    "fr_FR": "Tissu à carreaux noir et blanc"
                },
                "mat_color_code": [
                    {
                        "id": "808080",
                        "labels": {
                            "en_GB": "#808080",
                            "en_US": "#808080",
                            "fr_FR": "#808080"
                        }
                    }
                ],
                "mat_color_name": [
                    {
                        "id": "grey",
                        "labels": {
                            "en_GB": "Grey",
                            "en_US": "Grey",
                            "fr_FR": "Gris"
                        }
                    }
                ],
                "mat_country_orig": [
                    {
                        "id": "mat_india",
                        "labels": {
                            "en_GB": "India",
                            "en_US": "India",
                            "fr_FR": "Inde"
                        }
                    }
                ],
                "mat_color_description": {
                    "en_GB": "Check black and white wool",
                    "en_US": null,
                    "fr_FR": "Carreaux noirs et blancs"
                },
                "mat_composition_material_1": [
                    {
                        "id": "wool",
                        "labels": {
                            "en_GB": "Wool",
                            "en_US": "Wool",
                            "fr_FR": "Laine"
                        }
                    }
                ],
                "mat_composition_material_2": [
                    {
                        "id": "polyamide2",
                        "labels": {
                            "en_GB": "Polyamide",
                            "en_US": "Polyamide",
                            "fr_FR": "Polyamide"
                        }
                    }
                ],
                "mat_perc_composition_material_1": 99,
                "mat_perc_composition_material_2": 1
            },
            "documentType": {
                "@id": "/api/document-types/material",
                "@type": "DocumentType",
                "default": false,
                "id": "material"
            },
            "attributeSet": null,
            "classifications": [
                {
                    "@type": "Classification",
                    "@id": "/api/classifications/classification_materials",
                    "catalogId": null,
                    "id": "classification_materials",
                    "legacyId": 129
                }
            ],
            "documentLinks": [],
            "assetLinks": [
                {
                    "@type": "Link",
                    "@id": "/api/links/f3acee31-64ab-435c-a7cc-67f102eee4b2",
                    "linkType": {
                        "@type": "LinkType",
                        "@id": "/api/link-types/article_images_media",
                        "id": "article_images_media"
                    },
                    "origin": {
                        "@type": "Document",
                        "@id": "/api/documents/material_check_wool",
                        "id": "material_check_wool"
                    },
                    "target": {
                        "@type": "Asset",
                        "@id": "/api/assets/ed6b6a6c-7f0d-4269-8ebf-front",
                        "id": "ed6b6a6c-7f0d-4269-8ebf-front"
                    },
                    "sequence": 1,
                    "id": "f3acee31-64ab-435c-a7cc-67f102eee4b2",
                    "legacyId": 235
                }
            ],
            "workflows": [],
            "tags": [
                {
                    "@id": "/api/tags/all_documents_new_6130edc940e9b",
                    "@type": "Tag",
                    "id": "all_documents_new_6130edc940e9b"
                }
            ],
            "completenesses": [],
            "variants": [],
            "mainAssetThumbnailUrl": "https://cdn.quable.com/education-developers/ed6b6a6c-7f0d-4269-8ebf-front/thumbnail/check-material-png.jpg",
            "dateCreated": "2021-09-06T12:47:42+00:00",
            "dateModified": "2021-09-07T13:58:28+00:00",
            "id": "material_check_wool",
            "legacyId": 35
        },
        {
            "@type": "Document",
            "@id": "/api/documents/reference_chemise_col_mao",
            "active": true,
            "attributes": {
                "r_brand": [
                    {
                        "id": "brand1",
                        "labels": {
                            "en_GB": "Brand 1",
                            "en_US": "Brand 1",
                            "fr_FR": "Marque 1"
                        }
                    }
                ],
                "r_status": [
                    {
                        "id": "ref_active",
                        "labels": {
                            "en_GB": "Active",
                            "en_US": "Active",
                            "fr_FR": "Actif"
                        }
                    }
                ],
                "r_continuity": [
                    {
                        "id": "r_permanent",
                        "labels": {
                            "en_GB": "Permanent",
                            "en_US": "Permanent",
                            "fr_FR": "Permanent"
                        }
                    }
                ],
                "reference_name": {
                    "en_GB": null,
                    "en_US": null,
                    "fr_FR": "Chemise col mao"
                }
            },
            "documentType": {
                "@id": "/api/document-types/reference",
                "@type": "DocumentType",
                "default": true,
                "id": "reference"
            },
            "attributeSet": {
                "@id": "/api/attribute-sets/att_set_shirt",
                "@type": "AttributeSet",
                "id": "att_set_shirt"
            },
            "classifications": [
                {
                    "@type": "Classification",
                    "@id": "/api/classifications/classification_shirtsm3",
                    "catalogId": null,
                    "id": "classification_shirtsm3",
                    "legacyId": 1282
                }
            ],
            "documentLinks": [
                {
                    "@type": "Link",
                    "@id": "/api/links/928ed365-e243-4fc1-b952-e4b08deeaff2",
                    "linkType": {
                        "@type": "LinkType",
                        "@id": "/api/link-types/link_type_x_sell",
                        "id": "link_type_x_sell"
                    },
                    "origin": {
                        "@type": "Document",
                        "@id": "/api/documents/reference_chemise_col_mao",
                        "id": "reference_chemise_col_mao"
                    },
                    "target": {
                        "@type": "Document",
                        "@id": "/api/documents/reference_coat",
                        "id": "reference_coat"
                    },
                    "sequence": 1,
                    "id": "928ed365-e243-4fc1-b952-e4b08deeaff2",
                    "legacyId": 290
                }
            ],
            "assetLinks": [],
            "workflows": [],
            "tags": [
                {
                    "@id": "/api/tags/all_documents_new_6130edc94b136",
                    "@type": "Tag",
                    "id": "all_documents_new_6130edc94b136"
                }
            ],
            "completenesses": {
                "completeness_characteristics_and_care": {
                    "en_GB": 0,
                    "en_US": 0,
                    "fr_FR": 0
                }
            },
            "variants": [],
            "mainAssetThumbnailUrl": null,
            "dateCreated": "2023-08-22T08:28:00+00:00",
            "dateModified": "2023-08-22T08:31:39+00:00",
            "id": "reference_chemise_col_mao",
            "legacyId": 45
        },
        {
            "@type": "Document",
            "@id": "/api/documents/look_working_girl_check",
            "active": true,
            "attributes": {
                "look_name": {
                    "en_GB": "Working girl check",
                    "en_US": null,
                    "fr_FR": "Ensemble \"working girl\" à carreaux"
                },
                "look_gender": [
                    {
                        "id": "cr_woman",
                        "labels": {
                            "en_GB": "Woman",
                            "en_US": "Woman",
                            "fr_FR": "Femme"
                        }
                    }
                ],
                "look_lookcode": "WG-07585",
                "look_worn_size": [
                    {
                        "id": "look_38",
                        "labels": {
                            "en_GB": "38",
                            "en_US": "38",
                            "fr_FR": "38"
                        }
                    }
                ],
                "look_collection": {
                    "en_GB": "Business",
                    "en_US": null,
                    "fr_FR": "Business"
                },
                "look_model_name": {
                    "en_GB": "Valery Clay",
                    "en_US": null,
                    "fr_FR": "Valery Clay"
                },
                "look_seasoncode": "AW2021",
                "look_seasonname": [
                    {
                        "id": "look_aw",
                        "labels": {
                            "en_GB": "Automn - Winter",
                            "en_US": "Automn - Winter",
                            "fr_FR": "Automne - Hiver"
                        }
                    }
                ],
                "look_seasonyear": 2021,
                "look_composition": [
                    {
                        "id": "l_trousers",
                        "labels": {
                            "en_GB": "Trousers",
                            "en_US": "Trousers",
                            "fr_FR": "Pantalon"
                        }
                    },
                    {
                        "id": "l_shoes",
                        "labels": {
                            "en_GB": "Shoes",
                            "en_US": "Shoes",
                            "fr_FR": "Chaussures"
                        }
                    },
                    {
                        "id": "l_jacket",
                        "labels": {
                            "en_GB": "Jacket",
                            "en_US": "Jacket",
                            "fr_FR": "Veste"
                        }
                    }
                ],
                "look_look_number": 10658,
                "look_collectioncode": "024-BUS",
                "look_LookDescription": {
                    "en_GB": "Business woman style with high heels and pouch",
                    "en_US": null,
                    "fr_FR": "Style de business woman accompagné de hauts talons et d’une pochette"
                },
                "look_model_height_cm": 179,
                "look_fashion_show_order": 10
            },
            "documentType": {
                "@id": "/api/document-types/look",
                "@type": "DocumentType",
                "default": false,
                "id": "look"
            },
            "attributeSet": {
                "@id": "/api/attribute-sets/attr_set_clothes_look",
                "@type": "AttributeSet",
                "id": "attr_set_clothes_look"
            },
            "classifications": [
                {
                    "@type": "Classification",
                    "@id": "/api/classifications/classification_lookw1",
                    "catalogId": null,
                    "id": "classification_lookw1",
                    "legacyId": 1358
                }
            ],
            "documentLinks": [],
            "assetLinks": [
                {
                    "@type": "Link",
                    "@id": "/api/links/9625377e-d742-476e-aa2e-6e36975fc418",
                    "linkType": {
                        "@type": "LinkType",
                        "@id": "/api/link-types/article_images_media",
                        "id": "article_images_media"
                    },
                    "origin": {
                        "@type": "Document",
                        "@id": "/api/documents/look_working_girl_check",
                        "id": "look_working_girl_check"
                    },
                    "target": {
                        "@type": "Asset",
                        "@id": "/api/assets/af33607a-5dc6-4797-af06-front",
                        "id": "af33607a-5dc6-4797-af06-front"
                    },
                    "sequence": 1,
                    "id": "9625377e-d742-476e-aa2e-6e36975fc418",
                    "legacyId": 226
                },
                {
                    "@type": "Link",
                    "@id": "/api/links/f88d00e3-8f8a-46f1-bed2-af58a6a73967",
                    "linkType": {
                        "@type": "LinkType",
                        "@id": "/api/link-types/link_type_video_show",
                        "id": "link_type_video_show"
                    },
                    "origin": {
                        "@type": "Document",
                        "@id": "/api/documents/look_working_girl_check",
                        "id": "look_working_girl_check"
                    },
                    "target": {
                        "@type": "Asset",
                        "@id": "/api/assets/b9965641-33f8-45f1-845f-front",
                        "id": "b9965641-33f8-45f1-845f-front"
                    },
                    "sequence": 1,
                    "id": "f88d00e3-8f8a-46f1-bed2-af58a6a73967",
                    "legacyId": 225
                }
            ],
            "workflows": [],
            "tags": [
                {
                    "@id": "/api/tags/look_medias_ok",
                    "@type": "Tag",
                    "id": "look_medias_ok"
                },
                {
                    "@id": "/api/tags/look_video_show_ok",
                    "@type": "Tag",
                    "id": "look_video_show_ok"
                }
            ],
            "completenesses": {
                "completeness_look": {
                    "en_GB": 0.88,
                    "en_US": 0.65,
                    "fr_FR": 0.88
                }
            },
            "variants": [],
            "mainAssetThumbnailUrl": "https://cdn.quable.com/education-developers/af33607a-5dc6-4797-af06-front/thumbnail/check-black-and-white-look-png.jpg",
            "dateCreated": "2021-09-06T12:26:53+00:00",
            "dateModified": "2023-08-22T08:33:28+00:00",
            "id": "look_working_girl_check",
            "legacyId": 34
        },
        {
            "@type": "Document",
            "@id": "/api/documents/material_white_cotton",
            "active": true,
            "attributes": {
                "mat_origine": [
                    {
                        "id": "mat_vegetal",
                        "labels": {
                            "en_GB": "Vegetal",
                            "en_US": "Vegetal",
                            "fr_FR": "Végétale"
                        }
                    }
                ],
                "material_name": {
                    "en_GB": "White cotton",
                    "en_US": null,
                    "fr_FR": "Coton blanc"
                },
                "mat_color_code": [
                    {
                        "id": "ffffff",
                        "labels": {
                            "en_GB": "#FFFFFF",
                            "en_US": "#FFFFFF",
                            "fr_FR": "#FFFFFF"
                        }
                    }
                ],
                "mat_color_name": [
                    {
                        "id": "white",
                        "labels": {
                            "en_GB": "White",
                            "en_US": "White",
                            "fr_FR": "Blanc"
                        }
                    }
                ],
                "mat_country_orig": [
                    {
                        "id": "mat_turkey",
                        "labels": {
                            "en_GB": "Turkey",
                            "en_US": "Turkey",
                            "fr_FR": "Turquie"
                        }
                    }
                ],
                "mat_color_description": {
                    "en_GB": "White/ivory",
                    "en_US": null,
                    "fr_FR": "Blanc/ivoire"
                },
                "mat_composition_material_1": [
                    {
                        "id": "cotton",
                        "labels": {
                            "en_GB": "Cotton",
                            "en_US": "Cotton",
                            "fr_FR": "Coton"
                        }
                    }
                ],
                "mat_composition_material_2": [
                    {
                        "id": "polyamide2",
                        "labels": {
                            "en_GB": "Polyamide",
                            "en_US": "Polyamide",
                            "fr_FR": "Polyamide"
                        }
                    }
                ],
                "mat_perc_composition_material_1": 99,
                "mat_perc_composition_material_2": 1
            },
            "documentType": {
                "@id": "/api/document-types/material",
                "@type": "DocumentType",
                "default": false,
                "id": "material"
            },
            "attributeSet": null,
            "classifications": [
                {
                    "@type": "Classification",
                    "@id": "/api/classifications/classification_materials",
                    "catalogId": null,
                    "id": "classification_materials",
                    "legacyId": 129
                }
            ],
            "documentLinks": [
                {
                    "@type": "Link",
                    "@id": "/api/links/8548cb69-1d34-413c-8d00-25d6c9c677ef",
                    "linkType": {
                        "@type": "LinkType",
                        "@id": "/api/link-types/link_type_color_reference___material",
                        "id": "link_type_color_reference___material"
                    },
                    "origin": {
                        "@type": "Document",
                        "@id": "/api/documents/color_reference_spring_dress",
                        "id": "color_reference_spring_dress"
                    },
                    "target": {
                        "@type": "Document",
                        "@id": "/api/documents/material_white_cotton",
                        "id": "material_white_cotton"
                    },
                    "sequence": 2,
                    "id": "8548cb69-1d34-413c-8d00-25d6c9c677ef",
                    "legacyId": 255
                }
            ],
            "assetLinks": [
                {
                    "@type": "Link",
                    "@id": "/api/links/732068f9-27b7-4ddb-a40e-a6c47d451a75",
                    "linkType": {
                        "@type": "LinkType",
                        "@id": "/api/link-types/article_images_media",
                        "id": "article_images_media"
                    },
                    "origin": {
                        "@type": "Document",
                        "@id": "/api/documents/material_white_cotton",
                        "id": "material_white_cotton"
                    },
                    "target": {
                        "@type": "Asset",
                        "@id": "/api/assets/0743d46c-c360-4152-8e60-front",
                        "id": "0743d46c-c360-4152-8e60-front"
                    },
                    "sequence": 1,
                    "id": "732068f9-27b7-4ddb-a40e-a6c47d451a75",
                    "legacyId": 256
                }
            ],
            "workflows": [],
            "tags": [
                {
                    "@id": "/api/tags/all_documents_new_6130edc940e9b",
                    "@type": "Tag",
                    "id": "all_documents_new_6130edc940e9b"
                }
            ],
            "completenesses": [],
            "variants": [],
            "mainAssetThumbnailUrl": "https://cdn.quable.com/education-developers/0743d46c-c360-4152-8e60-front/thumbnail/white-cttn-png.jpg",
            "dateCreated": "2021-09-06T15:01:46+00:00",
            "dateModified": "2021-09-07T13:58:28+00:00",
            "id": "material_white_cotton",
            "legacyId": 41
        },
        {
            "@type": "Document",
            "@id": "/api/documents/reference_coat",
            "active": true,
            "attributes": {
                "r_type": [
                    {
                        "id": "jacket",
                        "labels": {
                            "en_GB": "Jacket",
                            "en_US": "Jacket",
                            "fr_FR": "Veste"
                        }
                    }
                ],
                "r_brand": [
                    {
                        "id": "brand1",
                        "labels": {
                            "en_GB": "Brand 1",
                            "en_US": "Brand 1",
                            "fr_FR": "Marque 1"
                        }
                    }
                ],
                "r_season": [
                    {
                        "id": "aw21",
                        "labels": {
                            "en_GB": "AW21",
                            "en_US": "AW21",
                            "fr_FR": "AH21"
                        }
                    }
                ],
                "r_status": [
                    {
                        "id": "ref_active",
                        "labels": {
                            "en_GB": "Active",
                            "en_US": "Active",
                            "fr_FR": "Actif"
                        }
                    }
                ],
                "r_made_in": [
                    {
                        "id": "italy",
                        "labels": {
                            "en_GB": "Italy",
                            "en_US": "Italy",
                            "fr_FR": "Italie"
                        }
                    }
                ],
                "r_washing": [
                    {
                        "id": "30_degrees",
                        "labels": {
                            "en_GB": "30 degrees",
                            "en_US": "30 degrees",
                            "fr_FR": "30 degrés"
                        }
                    }
                ],
                "r_pressing": [
                    {
                        "id": "hot",
                        "labels": {
                            "en_GB": "Hot",
                            "en_US": "Hot",
                            "fr_FR": "Chaud"
                        }
                    }
                ],
                "r_supplier": [
                    {
                        "id": "supplier1",
                        "labels": {
                            "en_GB": "Supplier 1",
                            "en_US": "Supplier 1",
                            "fr_FR": "Fournisseur 1"
                        }
                    }
                ],
                "r_continuity": [
                    {
                        "id": "r_seasonnal",
                        "labels": {
                            "en_GB": "Seasonnal",
                            "en_US": "Seasonnal",
                            "fr_FR": "Saisonnier"
                        }
                    }
                ],
                "r_custom_code": [
                    {
                        "id": "6102",
                        "labels": {
                            "en_GB": "6102-Women coats",
                            "en_US": "6102-Women coats",
                            "fr_FR": "6102-Manteaux femmes"
                        }
                    }
                ],
                "r_custom_name": [
                    {
                        "id": "6102_name",
                        "labels": {
                            "en_GB": "Women coats",
                            "en_US": "Women coats",
                            "fr_FR": "Manteaux femmes"
                        }
                    }
                ],
                "r_drying_type": [
                    {
                        "id": "notrumbledry",
                        "labels": {
                            "en_GB": "No trumble dry",
                            "en_US": "No trumble dry",
                            "fr_FR": "Pas de nettoyage à sec"
                        }
                    }
                ],
                "r_jacket_type": [
                    {
                        "id": "vest",
                        "labels": {
                            "en_GB": "Vest",
                            "en_US": "Vest",
                            "fr_FR": "Veste"
                        }
                    }
                ],
                "r_maintenance": {
                    "en_GB": "Wash with similar colors.",
                    "en_US": null,
                    "fr_FR": "Laver avec des couleurs similaires."
                },
                "reference_name": {
                    "en_GB": "Long Coat",
                    "en_US": null,
                    "fr_FR": "Manteau long"
                },
                "r_main_material": {
                    "en_GB": "Exterior : 100% Wool\nLining : 68% Acetate, 32% Polyester\nSleeve lining : 68% Acetate, 32% Polyester",
                    "en_US": null,
                    "fr_FR": "Doublure : 68% Acetate, 32% Polyester\nDoublure manches : 68% Acetate, 32% Polyester\nExterieur : 100% Laine"
                },
                "r_manufacturing_type": [
                    {
                        "id": "sewn",
                        "labels": {
                            "en_GB": "Sewn",
                            "en_US": "Sewn",
                            "fr_FR": "Cousu"
                        }
                    }
                ]
            },
            "documentType": {
                "@id": "/api/document-types/reference",
                "@type": "DocumentType",
                "default": true,
                "id": "reference"
            },
            "attributeSet": {
                "@id": "/api/attribute-sets/att_set_jacket",
                "@type": "AttributeSet",
                "id": "att_set_jacket"
            },
            "classifications": [
                {
                    "@type": "Classification",
                    "@id": "/api/classifications/classification_jackets_and_coats4",
                    "catalogId": null,
                    "id": "classification_jackets_and_coats4",
                    "legacyId": 828
                }
            ],
            "documentLinks": [
                {
                    "@type": "Link",
                    "@id": "/api/links/928ed365-e243-4fc1-b952-e4b08deeaff2",
                    "linkType": {
                        "@type": "LinkType",
                        "@id": "/api/link-types/link_type_x_sell",
                        "id": "link_type_x_sell"
                    },
                    "origin": {
                        "@type": "Document",
                        "@id": "/api/documents/reference_chemise_col_mao",
                        "id": "reference_chemise_col_mao"
                    },
                    "target": {
                        "@type": "Document",
                        "@id": "/api/documents/reference_coat",
                        "id": "reference_coat"
                    },
                    "sequence": 1,
                    "id": "928ed365-e243-4fc1-b952-e4b08deeaff2",
                    "legacyId": 290
                }
            ],
            "assetLinks": [
                {
                    "@type": "Link",
                    "@id": "/api/links/427dc4ff-9f55-4501-a3a7-80bde0877781",
                    "linkType": {
                        "@type": "LinkType",
                        "@id": "/api/link-types/article_images_media",
                        "id": "article_images_media"
                    },
                    "origin": {
                        "@type": "Document",
                        "@id": "/api/documents/reference_coat",
                        "id": "reference_coat"
                    },
                    "target": {
                        "@type": "Asset",
                        "@id": "/api/assets/b4a4db66-b137-442c-b2e9-front",
                        "id": "b4a4db66-b137-442c-b2e9-front"
                    },
                    "sequence": 1,
                    "id": "427dc4ff-9f55-4501-a3a7-80bde0877781",
                    "legacyId": 287
                },
                {
                    "@type": "Link",
                    "@id": "/api/links/38306376-2175-4c2e-b82c-34f00da52b6d",
                    "linkType": {
                        "@type": "LinkType",
                        "@id": "/api/link-types/link_type_croquis",
                        "id": "link_type_croquis"
                    },
                    "origin": {
                        "@type": "Document",
                        "@id": "/api/documents/reference_coat",
                        "id": "reference_coat"
                    },
                    "target": {
                        "@type": "Asset",
                        "@id": "/api/assets/b4a4db66-b137-442c-b2e9-front",
                        "id": "b4a4db66-b137-442c-b2e9-front"
                    },
                    "sequence": 1,
                    "id": "38306376-2175-4c2e-b82c-34f00da52b6d",
                    "legacyId": 261
                }
            ],
            "workflows": [],
            "tags": [
                {
                    "@id": "/api/tags/all_documents_new_6130edc94b136",
                    "@type": "Tag",
                    "id": "all_documents_new_6130edc94b136"
                }
            ],
            "completenesses": {
                "completeness_characteristics_and_care": {
                    "en_GB": 0.78,
                    "en_US": 0.56,
                    "fr_FR": 0.78
                }
            },
            "variants": [],
            "mainAssetThumbnailUrl": "https://cdn.quable.com/education-developers/b4a4db66-b137-442c-b2e9-front/thumbnail/coat-reference-png.jpg",
            "dateCreated": "2021-09-06T15:47:16+00:00",
            "dateModified": "2023-08-22T08:31:39+00:00",
            "id": "reference_coat",
            "legacyId": 42
        },
        {
            "@type": "Document",
            "@id": "/api/documents/color_reference_smooth_green_shirt",
            "active": true,
            "attributes": {
                "cr_occasion": [
                    {
                        "id": "cr_summer",
                        "labels": {
                            "en_GB": "Summer",
                            "en_US": "Summer",
                            "fr_FR": "Eté"
                        }
                    },
                    {
                        "id": "cr_work",
                        "labels": {
                            "en_GB": "Work",
                            "en_US": "Work",
                            "fr_FR": "Travail"
                        }
                    },
                    {
                        "id": "cr_beach",
                        "labels": {
                            "en_GB": "Beach",
                            "en_US": "Beach",
                            "fr_FR": "Plage"
                        }
                    }
                ],
                "cr_seotitle": {
                    "en_GB": "Organic Cotton Smooth Green Shirt",
                    "en_US": "Organic Cotton Smart Green Round Collar T-Shirt",
                    "fr_FR": "Chemise Smooth Verte en coton biologique"
                },
                "cr_color_code": [
                    {
                        "id": "cr_A9A9A9",
                        "labels": {
                            "en_GB": "# A9A9A9",
                            "en_US": "# A9A9A9",
                            "fr_FR": "# A9A9A9"
                        }
                    }
                ],
                "cr_color_name": [
                    {
                        "id": "cr_green",
                        "labels": {
                            "en_GB": "Green",
                            "en_US": "Green",
                            "fr_FR": "Vert"
                        }
                    }
                ],
                "cr_description": {
                    "en_GB": "This classic shirt is presented in a slim fit without pliers, made from cotton in a jacquard weave.",
                    "en_US": "The Smart T-shirt is an organic cotton T-shirt.",
                    "fr_FR": "Cette chemise se présente dans une coupe ajustée sans pinces, réalisée en coton avec motif jacquard."
                },
                "cr_macro_color": [
                    {
                        "id": "cr_Green",
                        "labels": {
                            "en_GB": "Green",
                            "en_US": "Green",
                            "fr_FR": "Vert"
                        }
                    }
                ],
                "cr_marketplaces": [
                    {
                        "id": "veepee",
                        "labels": {
                            "en_GB": "Veepee",
                            "en_US": null,
                            "fr_FR": "veepee"
                        }
                    },
                    {
                        "id": "zalando",
                        "labels": {
                            "en_GB": "Zalando",
                            "en_US": null,
                            "fr_FR": "Zalando"
                        }
                    },
                    {
                        "id": "laredoute",
                        "labels": {
                            "en_GB": "La redoute",
                            "en_US": null,
                            "fr_FR": "La redoute"
                        }
                    }
                ],
                "cr_veepee_title": {
                    "en_GB": "Organic Cotton Smooth Green Shirt",
                    "en_US": null,
                    "fr_FR": "<p>Chemise Smooth Verte en coton biologique</p>"
                },
                "cr_zalando_desc": {
                    "en_GB": null,
                    "en_US": null,
                    "fr_FR": "<ul><li>100 % coton</li></ul><ul><li>Vert</li></ul><ul><li>Coupe ajustée</li></ul><ul><li>Le mannequin porte une taille M française</li></ul><ul><li>Mensurations du mannequin : tour de poitrine 87 cm, taille 186 cm</li></ul><ul><li>Fabriquée en Italie</li></ul>"
                },
                "cr_active_season": {
                    "en_GB": "SS21",
                    "en_US": "SS21",
                    "fr_FR": "SS21"
                },
                "color_ref_is_active": [
                    {
                        "id": "active_yes",
                        "labels": {
                            "en_GB": "Yes",
                            "en_US": "Yes",
                            "fr_FR": "Oui"
                        }
                    }
                ],
                "cr_active_countries": [
                    {
                        "id": "cr_france",
                        "labels": {
                            "en_GB": "France",
                            "en_US": "France",
                            "fr_FR": "France"
                        }
                    },
                    {
                        "id": "cr_italy",
                        "labels": {
                            "en_GB": "Italy",
                            "en_US": "Italy",
                            "fr_FR": "Italie"
                        }
                    },
                    {
                        "id": "cr_portugal",
                        "labels": {
                            "en_GB": "Portugal",
                            "en_US": "Portugal",
                            "fr_FR": "Portugal"
                        }
                    }
                ],
                "color_reference_name": {
                    "en_GB": "Smooth Green Shirt",
                    "en_US": "Smart Green T-shirt ",
                    "fr_FR": "Chemise Smooth Verte"
                },
                "cr_digital_description": {
                    "en_GB": "<ul><li>100% cotton</li><li>Green</li><li>Fitted cut</li><li>The model is wearing a French size M</li><li>Model's measurements: chest measurement 87 cm, waist 186 cm</li><li>Made in Italy</li></ul>",
                    "en_US": null,
                    "fr_FR": "<ul><li>100 % coton</li><li>Vert</li><li>Coupe ajustée</li><li>Le mannequin porte une taille M française</li><li>Mensurations du mannequin : tour de poitrine 87 cm, taille 186 cm</li><li>Fabriquée en Italie</li></ul>"
                },
                "cr_seo_long_description": {
                    "en_GB": "<p>Available in a wide range of bright colours, this classic shirt reflects the colour-block theme of the collection. It is presented in a slim fit without pliers, made from cotton in a tone-on-tone Monogram jacquard weave. Metal buttons adorn the piece at the top of the opening and at the cuffs.</p>",
                    "en_US": null,
                    "fr_FR": "<p>Disponible dans une vaste palette de couleurs vives, cette chemise classique reflète le thème color-block de la collection. Elle se présente dans une coupe ajustée sans pinces, réalisée en coton dans un tissage jacquard Monogram ton sur ton. Des boutons métalliques ornent la pièce en haut de l'ouverture et aux poignets.</p>"
                },
                "cr_seo_short_description": {
                    "en_GB": "This shirt is presented in a slim fit without pliers, made from cotton in a tone-on-tone Monogram jacquard weave.",
                    "en_US": "The Smart T-shirt is an organic cotton T-shirt.",
                    "fr_FR": "Disponible dans une vaste palette de couleurs vives, cette chemise classique reflète le thème color-block de la collection. Elle se présente dans une coupe ajustée sans pinces, réalisée en coton dans un tissage jacquard Monogram ton sur ton."
                }
            },
            "documentType": {
                "@id": "/api/document-types/color_reference",
                "@type": "DocumentType",
                "default": false,
                "id": "color_reference"
            },
            "attributeSet": {
                "@id": "/api/attribute-sets/attr_set_clothes_color_reference",
                "@type": "AttributeSet",
                "id": "attr_set_clothes_color_reference"
            },
            "classifications": [
                {
                    "@type": "Classification",
                    "@id": "/api/classifications/eco_612fa0ff3cddc",
                    "catalogId": "eco",
                    "id": "eco_612fa0ff3cddc",
                    "legacyId": 144
                },
                {
                    "@type": "Classification",
                    "@id": "/api/classifications/classification_trousers_and_shortsm3",
                    "catalogId": null,
                    "id": "classification_trousers_and_shortsm3",
                    "legacyId": 1285
                },
                {
                    "@type": "Classification",
                    "@id": "/api/classifications/lrd_6141c684d9e6c",
                    "catalogId": "lrd",
                    "id": "lrd_6141c684d9e6c",
                    "legacyId": 1418
                },
                {
                    "@type": "Classification",
                    "@id": "/api/classifications/vpe_6141c707c04a6",
                    "catalogId": "vpe",
                    "id": "vpe_6141c707c04a6",
                    "legacyId": 1431
                },
                {
                    "@type": "Classification",
                    "@id": "/api/classifications/eco_612fa0ff3cddc",
                    "catalogId": "eco",
                    "id": "eco_612fa0ff3cddc",
                    "legacyId": 144
                },
                {
                    "@type": "Classification",
                    "@id": "/api/classifications/lrd_6141c684d9e6c",
                    "catalogId": "lrd",
                    "id": "lrd_6141c684d9e6c",
                    "legacyId": 1418
                },
                {
                    "@type": "Classification",
                    "@id": "/api/classifications/vpe_6141c707c04a6",
                    "catalogId": "vpe",
                    "id": "vpe_6141c707c04a6",
                    "legacyId": 1431
                }
            ],
            "documentLinks": [
                {
                    "@type": "Link",
                    "@id": "/api/links/7c2c0e7b-15ea-4a65-965a-3ff234749c22",
                    "linkType": {
                        "@type": "LinkType",
                        "@id": "/api/link-types/link_type_reference_reference_color",
                        "id": "link_type_reference_reference_color"
                    },
                    "origin": {
                        "@type": "Document",
                        "@id": "/api/documents/reference_smooth_shirt",
                        "id": "reference_smooth_shirt"
                    },
                    "target": {
                        "@type": "Document",
                        "@id": "/api/documents/color_reference_smooth_green_shirt",
                        "id": "color_reference_smooth_green_shirt"
                    },
                    "sequence": 1,
                    "id": "7c2c0e7b-15ea-4a65-965a-3ff234749c22",
                    "legacyId": 22
                },
                {
                    "@type": "Link",
                    "@id": "/api/links/78202a0f-78c6-448c-9e3d-c5b1b556f4cf",
                    "linkType": {
                        "@type": "LinkType",
                        "@id": "/api/link-types/link_type_color_reference___material",
                        "id": "link_type_color_reference___material"
                    },
                    "origin": {
                        "@type": "Document",
                        "@id": "/api/documents/color_reference_smooth_green_shirt",
                        "id": "color_reference_smooth_green_shirt"
                    },
                    "target": {
                        "@type": "Document",
                        "@id": "/api/documents/green_fabric",
                        "id": "green_fabric"
                    },
                    "sequence": 1,
                    "id": "78202a0f-78c6-448c-9e3d-c5b1b556f4cf",
                    "legacyId": 190
                },
                {
                    "@type": "Link",
                    "@id": "/api/links/78d144a6-b40b-4488-8395-6ecd73715b2c",
                    "linkType": {
                        "@type": "LinkType",
                        "@id": "/api/link-types/link_type_ref_col___ref_col",
                        "id": "link_type_ref_col___ref_col"
                    },
                    "origin": {
                        "@type": "Document",
                        "@id": "/api/documents/color_reference_smooth_green_shirt",
                        "id": "color_reference_smooth_green_shirt"
                    },
                    "target": {
                        "@type": "Document",
                        "@id": "/api/documents/color_reference_smooth_yellow_shirt",
                        "id": "color_reference_smooth_yellow_shirt"
                    },
                    "sequence": 1,
                    "id": "78d144a6-b40b-4488-8395-6ecd73715b2c",
                    "legacyId": 97
                },
                {
                    "@type": "Link",
                    "@id": "/api/links/20868f55-89bd-4833-8791-cde0af5a7781",
                    "linkType": {
                        "@type": "LinkType",
                        "@id": "/api/link-types/link_type_ref_col___ref_col",
                        "id": "link_type_ref_col___ref_col"
                    },
                    "origin": {
                        "@type": "Document",
                        "@id": "/api/documents/color_reference_smooth_yellow_shirt",
                        "id": "color_reference_smooth_yellow_shirt"
                    },
                    "target": {
                        "@type": "Document",
                        "@id": "/api/documents/color_reference_smooth_green_shirt",
                        "id": "color_reference_smooth_green_shirt"
                    },
                    "sequence": 1,
                    "id": "20868f55-89bd-4833-8791-cde0af5a7781",
                    "legacyId": 98
                },
                {
                    "@type": "Link",
                    "@id": "/api/links/16a0d83f-2a96-4aa4-acf0-28196b78e04e",
                    "linkType": {
                        "@type": "LinkType",
                        "@id": "/api/link-types/link_type_look_color_reference",
                        "id": "link_type_look_color_reference"
                    },
                    "origin": {
                        "@type": "Document",
                        "@id": "/api/documents/look_winter",
                        "id": "look_winter"
                    },
                    "target": {
                        "@type": "Document",
                        "@id": "/api/documents/color_reference_smooth_green_shirt",
                        "id": "color_reference_smooth_green_shirt"
                    },
                    "sequence": 1,
                    "id": "16a0d83f-2a96-4aa4-acf0-28196b78e04e",
                    "legacyId": 300
                }
            ],
            "assetLinks": [
                {
                    "@type": "Link",
                    "@id": "/api/links/985b431c-3c93-4b53-b392-5f50434804e7",
                    "linkType": {
                        "@type": "LinkType",
                        "@id": "/api/link-types/article_images_media",
                        "id": "article_images_media"
                    },
                    "origin": {
                        "@type": "Document",
                        "@id": "/api/documents/color_reference_smooth_green_shirt",
                        "id": "color_reference_smooth_green_shirt"
                    },
                    "target": {
                        "@type": "Asset",
                        "@id": "/api/assets/e3cf664a-f319-4f32-aa71-front",
                        "id": "e3cf664a-f319-4f32-aa71-front"
                    },
                    "sequence": 1,
                    "id": "985b431c-3c93-4b53-b392-5f50434804e7",
                    "legacyId": 107
                },
                {
                    "@type": "Link",
                    "@id": "/api/links/3a9fed5c-79a4-48fb-9600-e2a4ecd6eff4",
                    "linkType": {
                        "@type": "LinkType",
                        "@id": "/api/link-types/color_reference_worn_view",
                        "id": "color_reference_worn_view"
                    },
                    "origin": {
                        "@type": "Document",
                        "@id": "/api/documents/color_reference_smooth_green_shirt",
                        "id": "color_reference_smooth_green_shirt"
                    },
                    "target": {
                        "@type": "Asset",
                        "@id": "/api/assets/b0e61fe7-2a37-4978-98aa-front",
                        "id": "b0e61fe7-2a37-4978-98aa-front"
                    },
                    "sequence": 1,
                    "id": "3a9fed5c-79a4-48fb-9600-e2a4ecd6eff4",
                    "legacyId": 108
                },
                {
                    "@type": "Link",
                    "@id": "/api/links/3b85c75f-4f5c-4772-97d2-717962c7aaed",
                    "linkType": {
                        "@type": "LinkType",
                        "@id": "/api/link-types/color_reference_worn_view",
                        "id": "color_reference_worn_view"
                    },
                    "origin": {
                        "@type": "Document",
                        "@id": "/api/documents/color_reference_smooth_green_shirt",
                        "id": "color_reference_smooth_green_shirt"
                    },
                    "target": {
                        "@type": "Asset",
                        "@id": "/api/assets/7875ce43-fb90-4e45-b89a-front",
                        "id": "7875ce43-fb90-4e45-b89a-front"
                    },
                    "sequence": 2,
                    "id": "3b85c75f-4f5c-4772-97d2-717962c7aaed",
                    "legacyId": 109
                },
                {
                    "@type": "Link",
                    "@id": "/api/links/6bb997f9-3bce-45d8-9e4d-22bda1167720",
                    "linkType": {
                        "@type": "LinkType",
                        "@id": "/api/link-types/color_reference_worn_view",
                        "id": "color_reference_worn_view"
                    },
                    "origin": {
                        "@type": "Document",
                        "@id": "/api/documents/color_reference_smooth_green_shirt",
                        "id": "color_reference_smooth_green_shirt"
                    },
                    "target": {
                        "@type": "Asset",
                        "@id": "/api/assets/f619434a-f401-476c-8ea4-front",
                        "id": "f619434a-f401-476c-8ea4-front"
                    },
                    "sequence": 3,
                    "id": "6bb997f9-3bce-45d8-9e4d-22bda1167720",
                    "legacyId": 110
                }
            ],
            "workflows": [
                {
                    "@type": "Workflow",
                    "@id": "/api/workflows/workflow_product_workflow",
                    "steps": [
                        {
                            "id": "workflow_product_workflow_new",
                            "color": "turquoise",
                            "default": true,
                            "name": {
                                "en-US": "Init",
                                "fr-FR": "Nouveau"
                            },
                            "description": {
                                "en-US": null,
                                "fr-FR": null
                            }
                        }
                    ],
                    "transitions": [
                        {
                            "id": "workflow_product_workflow_enrichement_started",
                            "originStepId": "workflow_product_workflow_new",
                            "targetStepId": "workflow_product_workflow_enrichment",
                            "name": {
                                "fr-FR": "Contribution KO"
                            },
                            "permissionFeatures": [
                                "role_admin",
                                "role_manager",
                                "role_contributor",
                                "role_iconographer",
                                "role_reader"
                            ]
                        }
                    ],
                    "dateCreated": "2021-08-24T15:58:28+00:00",
                    "dateModified": "2023-03-13T16:33:05+00:00",
                    "id": "workflow_product_workflow"
                }
            ],
            "tags": [
                {
                    "@id": "/api/tags/color_reference_active_product",
                    "@type": "Tag",
                    "id": "color_reference_active_product"
                },
                {
                    "@id": "/api/tags/color_reference_description_ok",
                    "@type": "Tag",
                    "id": "color_reference_description_ok"
                },
                {
                    "@id": "/api/tags/color_reference_e_com_ok",
                    "@type": "Tag",
                    "id": "color_reference_e_com_ok"
                }
            ],
            "completenesses": {
                "completeness_collection_book": {
                    "en_GB": 1,
                    "en_US": 0.8,
                    "fr_FR": 1
                },
                "completeness_brand_portal": {
                    "en_GB": 1,
                    "en_US": 0.82,
                    "fr_FR": 1
                },
                "completeness_e_commerce": {
                    "en_GB": 0.9,
                    "en_US": 0.7,
                    "fr_FR": 0.9
                }
            },
            "variants": [
                {
                    "@type": "Variant",
                    "@id": "/api/variants/sku_smooth_green_shirt_xs",
                    "id": "sku_smooth_green_shirt_xs"
                },
                {
                    "@type": "Variant",
                    "@id": "/api/variants/sku_smooth_green_shirt_s",
                    "id": "sku_smooth_green_shirt_s"
                },
                {
                    "@type": "Variant",
                    "@id": "/api/variants/sku_smooth_green_shirt_m",
                    "id": "sku_smooth_green_shirt_m"
                }
            ],
            "mainAssetThumbnailUrl": "https://cdn.quable.com/education-developers/e3cf664a-f319-4f32-aa71-front/thumbnail/green-men-shirt-png.jpg",
            "dateCreated": "2021-08-09T13:32:22+00:00",
            "dateModified": "2023-11-24T09:31:27+00:00",
            "id": "color_reference_smooth_green_shirt",
            "legacyId": 7
        },
        {
            "@type": "Document",
            "@id": "/api/documents/color_reference_lb_coat",
            "active": true,
            "attributes": {
                "cr_occasion": [
                    {
                        "id": "cr_work",
                        "labels": {
                            "en_GB": "Work",
                            "en_US": "Work",
                            "fr_FR": "Travail"
                        }
                    },
                    {
                        "id": "cr_evening",
                        "labels": {
                            "en_GB": "Evening",
                            "en_US": "Evening",
                            "fr_FR": "Soirée"
                        }
                    }
                ],
                "cr_seotitle": {
                    "en_GB": "Light beige coat",
                    "en_US": "Long coat-Black",
                    "fr_FR": "Manteau beige clair"
                },
                "cr_color_name": [
                    {
                        "id": "cr_dark_green",
                        "labels": {
                            "en_GB": "Dark green",
                            "en_US": "Dark green",
                            "fr_FR": "Vert foncé"
                        }
                    }
                ],
                "cr_description": {
                    "en_GB": "Light beige coat",
                    "en_US": "A long coat for winter season",
                    "fr_FR": "Manteau long beige en laine recyclée"
                },
                "cr_macro_color": [
                    {
                        "id": "cr_white",
                        "labels": {
                            "en_GB": "white",
                            "en_US": "white",
                            "fr_FR": "blanc"
                        }
                    }
                ],
                "cr_marketplaces": [
                    {
                        "id": "veepee",
                        "labels": {
                            "en_GB": "Veepee",
                            "en_US": null,
                            "fr_FR": "veepee"
                        }
                    },
                    {
                        "id": "zalando",
                        "labels": {
                            "en_GB": "Zalando",
                            "en_US": null,
                            "fr_FR": "Zalando"
                        }
                    },
                    {
                        "id": "laredoute",
                        "labels": {
                            "en_GB": "La redoute",
                            "en_US": null,
                            "fr_FR": "La redoute"
                        }
                    }
                ],
                "cr_veepee_title": {
                    "en_GB": "Light beige coat",
                    "en_US": null,
                    "fr_FR": "Manteau beige clair"
                },
                "cr_active_season": {
                    "en_GB": "Automn - Winter 2021",
                    "en_US": null,
                    "fr_FR": "Automne - Hiver 2021"
                },
                "color_ref_is_active": [
                    {
                        "id": "active_yes",
                        "labels": {
                            "en_GB": "Yes",
                            "en_US": "Yes",
                            "fr_FR": "Oui"
                        }
                    }
                ],
                "cr_active_countries": [
                    {
                        "id": "cr_france",
                        "labels": {
                            "en_GB": "France",
                            "en_US": "France",
                            "fr_FR": "France"
                        }
                    },
                    {
                        "id": "cr_italy",
                        "labels": {
                            "en_GB": "Italy",
                            "en_US": "Italy",
                            "fr_FR": "Italie"
                        }
                    },
                    {
                        "id": "cr_portugal",
                        "labels": {
                            "en_GB": "Portugal",
                            "en_US": "Portugal",
                            "fr_FR": "Portugal"
                        }
                    },
                    {
                        "id": "cr_espagne",
                        "labels": {
                            "en_GB": "Spain",
                            "en_US": "Spain",
                            "fr_FR": "Espagne"
                        }
                    },
                    {
                        "id": "cr_united_kingdom",
                        "labels": {
                            "en_GB": "United Kingdom",
                            "en_US": "United Kingdom",
                            "fr_FR": "Royaume-Uni"
                        }
                    }
                ],
                "color_reference_name": {
                    "en_GB": "Light beige coat",
                    "en_US": "Long coat",
                    "fr_FR": "Manteau beige clair"
                },
                "cr_digital_description": {
                    "en_GB": "<p>This coat will give you a strict and formal allure, while being totally modern.<br>It's a must-have.&nbsp;</p><p>It can be worn with fantasy accessories to bring some fun on the look.&nbsp;</p><p>It can be perfect with high heels or classic derbies.</p><p><br></p>",
                    "en_US": null,
                    "fr_FR": "Manteau long beige en laine recyclée, à associer avec des talons hauts pour mettre en valeur les jambes, ou des chaussures plates pour plus de confort, ou encore des baskets pour un effet décalé."
                },
                "cr_seo_long_description": {
                    "en_GB": "<p>This coat will give you a strict and formal allure, while being totally modern.<br>It's a must-have.&nbsp;</p><p>It can be worn with fantasy accessories to bring some fun on the look.&nbsp;</p><p>It can be perfect with high heels or classic derbies.</p><p><br></p>",
                    "en_US": null,
                    "fr_FR": "Manteau long beige en laine recyclée, à associer avec des talons hauts pour mettre en valeur les jambes, ou des chaussures plates pour plus de confort, ou encore des baskets pour un effet décalé."
                },
                "cr_seo_short_description": {
                    "en_GB": "This coat will give you a strict and formal allure, while being totally modern.",
                    "en_US": null,
                    "fr_FR": "Ce manteau vous donnera une allure stricte et chic tout en étant très moderne."
                }
            },
            "documentType": {
                "@id": "/api/document-types/color_reference",
                "@type": "DocumentType",
                "default": false,
                "id": "color_reference"
            },
            "attributeSet": {
                "@id": "/api/attribute-sets/attr_set_clothes_color_reference",
                "@type": "AttributeSet",
                "id": "attr_set_clothes_color_reference"
            },
            "classifications": [
                {
                    "@type": "Classification",
                    "@id": "/api/classifications/eco_612fa04e11547",
                    "catalogId": "eco",
                    "id": "eco_612fa04e11547",
                    "legacyId": 141
                },
                {
                    "@type": "Classification",
                    "@id": "/api/classifications/eco_612fa05921f85",
                    "catalogId": "eco",
                    "id": "eco_612fa05921f85",
                    "legacyId": 142
                },
                {
                    "@type": "Classification",
                    "@id": "/api/classifications/classification_jackets_and_coats4",
                    "catalogId": null,
                    "id": "classification_jackets_and_coats4",
                    "legacyId": 828
                },
                {
                    "@type": "Classification",
                    "@id": "/api/classifications/lrd_6141c68d42c19",
                    "catalogId": "lrd",
                    "id": "lrd_6141c68d42c19",
                    "legacyId": 1419
                },
                {
                    "@type": "Classification",
                    "@id": "/api/classifications/vpe_6141c713042dc",
                    "catalogId": "vpe",
                    "id": "vpe_6141c713042dc",
                    "legacyId": 1432
                },
                {
                    "@type": "Classification",
                    "@id": "/api/classifications/eco_612fa05921f85",
                    "catalogId": "eco",
                    "id": "eco_612fa05921f85",
                    "legacyId": 142
                },
                {
                    "@type": "Classification",
                    "@id": "/api/classifications/lrd_6141c68d42c19",
                    "catalogId": "lrd",
                    "id": "lrd_6141c68d42c19",
                    "legacyId": 1419
                },
                {
                    "@type": "Classification",
                    "@id": "/api/classifications/vpe_6141c713042dc",
                    "catalogId": "vpe",
                    "id": "vpe_6141c713042dc",
                    "legacyId": 1432
                }
            ],
            "documentLinks": [
                {
                    "@type": "Link",
                    "@id": "/api/links/e64eaa74-0b5d-4493-83b8-53e2ccf14b74",
                    "linkType": {
                        "@type": "LinkType",
                        "@id": "/api/link-types/link_type_reference_reference_color",
                        "id": "link_type_reference_reference_color"
                    },
                    "origin": {
                        "@type": "Document",
                        "@id": "/api/documents/reference_oversize_vest",
                        "id": "reference_oversize_vest"
                    },
                    "target": {
                        "@type": "Document",
                        "@id": "/api/documents/color_reference_lb_coat",
                        "id": "color_reference_lb_coat"
                    },
                    "sequence": 1,
                    "id": "e64eaa74-0b5d-4493-83b8-53e2ccf14b74",
                    "legacyId": 278
                },
                {
                    "@type": "Link",
                    "@id": "/api/links/075fa483-6195-4010-b32a-9eb833b23530",
                    "linkType": {
                        "@type": "LinkType",
                        "@id": "/api/link-types/link_type_color_reference___material",
                        "id": "link_type_color_reference___material"
                    },
                    "origin": {
                        "@type": "Document",
                        "@id": "/api/documents/color_reference_lb_coat",
                        "id": "color_reference_lb_coat"
                    },
                    "target": {
                        "@type": "Document",
                        "@id": "/api/documents/material_crossed_wool",
                        "id": "material_crossed_wool"
                    },
                    "sequence": 1,
                    "id": "075fa483-6195-4010-b32a-9eb833b23530",
                    "legacyId": 240
                },
                {
                    "@type": "Link",
                    "@id": "/api/links/1cef4866-080c-4fa2-a896-dce5f84319df",
                    "linkType": {
                        "@type": "LinkType",
                        "@id": "/api/link-types/link_type_color_reference___material",
                        "id": "link_type_color_reference___material"
                    },
                    "origin": {
                        "@type": "Document",
                        "@id": "/api/documents/color_reference_lb_coat",
                        "id": "color_reference_lb_coat"
                    },
                    "target": {
                        "@type": "Document",
                        "@id": "/api/documents/material_light_beige",
                        "id": "material_light_beige"
                    },
                    "sequence": 2,
                    "id": "1cef4866-080c-4fa2-a896-dce5f84319df",
                    "legacyId": 244
                }
            ],
            "assetLinks": [
                {
                    "@type": "Link",
                    "@id": "/api/links/0bca2974-ae91-452e-a2fc-bf6b01f97a06",
                    "linkType": {
                        "@type": "LinkType",
                        "@id": "/api/link-types/color_reference_worn_view",
                        "id": "color_reference_worn_view"
                    },
                    "origin": {
                        "@type": "Document",
                        "@id": "/api/documents/color_reference_lb_coat",
                        "id": "color_reference_lb_coat"
                    },
                    "target": {
                        "@type": "Asset",
                        "@id": "/api/assets/83501126-1d0c-4994-88d6-front",
                        "id": "83501126-1d0c-4994-88d6-front"
                    },
                    "sequence": 2,
                    "id": "0bca2974-ae91-452e-a2fc-bf6b01f97a06",
                    "legacyId": 250
                },
                {
                    "@type": "Link",
                    "@id": "/api/links/f4fae6e5-f823-40e8-9c59-aca7178aba09",
                    "linkType": {
                        "@type": "LinkType",
                        "@id": "/api/link-types/color_reference_worn_view",
                        "id": "color_reference_worn_view"
                    },
                    "origin": {
                        "@type": "Document",
                        "@id": "/api/documents/color_reference_lb_coat",
                        "id": "color_reference_lb_coat"
                    },
                    "target": {
                        "@type": "Asset",
                        "@id": "/api/assets/ae9dc92a-016f-4e43-a200-front",
                        "id": "ae9dc92a-016f-4e43-a200-front"
                    },
                    "sequence": 3,
                    "id": "f4fae6e5-f823-40e8-9c59-aca7178aba09",
                    "legacyId": 251
                },
                {
                    "@type": "Link",
                    "@id": "/api/links/9cd12f55-3ebe-4e92-96ac-caa83b360dc6",
                    "linkType": {
                        "@type": "LinkType",
                        "@id": "/api/link-types/color_reference_worn_view",
                        "id": "color_reference_worn_view"
                    },
                    "origin": {
                        "@type": "Document",
                        "@id": "/api/documents/color_reference_lb_coat",
                        "id": "color_reference_lb_coat"
                    },
                    "target": {
                        "@type": "Asset",
                        "@id": "/api/assets/f7485b74-f45d-4289-8e3c-front",
                        "id": "f7485b74-f45d-4289-8e3c-front"
                    },
                    "sequence": 4,
                    "id": "9cd12f55-3ebe-4e92-96ac-caa83b360dc6",
                    "legacyId": 252
                }
            ],
            "workflows": [
                {
                    "@type": "Workflow",
                    "@id": "/api/workflows/workflow_product_workflow",
                    "steps": [
                        {
                            "id": "workflow_product_workflow_new",
                            "color": "turquoise",
                            "default": true,
                            "name": {
                                "en-US": "Init",
                                "fr-FR": "Nouveau"
                            },
                            "description": {
                                "en-US": null,
                                "fr-FR": null
                            }
                        }
                    ],
                    "transitions": [
                        {
                            "id": "workflow_product_workflow_enrichement_started",
                            "originStepId": "workflow_product_workflow_new",
                            "targetStepId": "workflow_product_workflow_enrichment",
                            "name": {
                                "fr-FR": "Contribution KO"
                            },
                            "permissionFeatures": [
                                "role_admin",
                                "role_manager",
                                "role_contributor",
                                "role_iconographer",
                                "role_reader"
                            ]
                        }
                    ],
                    "dateCreated": "2021-08-24T15:58:28+00:00",
                    "dateModified": "2023-03-13T16:33:05+00:00",
                    "id": "workflow_product_workflow"
                }
            ],
            "tags": [
                {
                    "@id": "/api/tags/color_reference_active_product",
                    "@type": "Tag",
                    "id": "color_reference_active_product"
                },
                {
                    "@id": "/api/tags/color_reference_description_ok",
                    "@type": "Tag",
                    "id": "color_reference_description_ok"
                },
                {
                    "@id": "/api/tags/color_reference_e_com_ok",
                    "@type": "Tag",
                    "id": "color_reference_e_com_ok"
                }
            ],
            "completenesses": {
                "completeness_brand_portal": {
                    "en_GB": 1,
                    "en_US": 0.64,
                    "fr_FR": 1
                },
                "completeness_collection_book": {
                    "en_GB": 1,
                    "en_US": 0.6,
                    "fr_FR": 1
                },
                "completeness_e_commerce": {
                    "en_GB": 0.9,
                    "en_US": 0.5,
                    "fr_FR": 0.9
                }
            },
            "variants": [
                {
                    "@type": "Variant",
                    "@id": "/api/variants/Coatb",
                    "id": "Coatb"
                },
                {
                    "@type": "Variant",
                    "@id": "/api/variants/Coatb40",
                    "id": "Coatb40"
                },
                {
                    "@type": "Variant",
                    "@id": "/api/variants/Coatb42",
                    "id": "Coatb42"
                }
            ],
            "mainAssetThumbnailUrl": "https://cdn.quable.com/education-developers/83501126-1d0c-4994-88d6-front/thumbnail/light-beige-coat-png.jpg",
            "dateCreated": "2021-09-06T14:35:32+00:00",
            "dateModified": "2023-12-04T14:04:30+00:00",
            "id": "color_reference_lb_coat",
            "legacyId": 39
        },
        {
            "@type": "Document",
            "@id": "/api/documents/color_reference_smooth_yellow_shirt",
            "active": true,
            "attributes": {
                "cr_occasion": [
                    {
                        "id": "cr_summer",
                        "labels": {
                            "en_GB": "Summer",
                            "en_US": "Summer",
                            "fr_FR": "Eté"
                        }
                    },
                    {
                        "id": "cr_beach",
                        "labels": {
                            "en_GB": "Beach",
                            "en_US": "Beach",
                            "fr_FR": "Plage"
                        }
                    }
                ],
                "cr_seotitle": {
                    "en_GB": "Organic Cotton Smooth Yellow Shirt",
                    "en_US": "The Smart T-shirt is an organic yellow cotton T-shirt. forSummer",
                    "fr_FR": "Chemise Smooth Jaune en coton biologique"
                },
                "cr_color_code": [
                    {
                        "id": "cr_FAF0E6",
                        "labels": {
                            "en_GB": "# FAF0E6",
                            "en_US": "# FAF0E6",
                            "fr_FR": "# FAF0E6"
                        }
                    }
                ],
                "cr_color_name": [
                    {
                        "id": "cr_rouge",
                        "labels": {
                            "en_GB": "Red",
                            "en_US": "Red",
                            "fr_FR": "Rouge"
                        }
                    }
                ],
                "cr_description": {
                    "en_GB": "This classic shirt is presented in a slim fit without pliers, made from cotton in a jacquard weave.",
                    "en_US": "The Smart T-shirt is an organic yellow cotton T-shirt.",
                    "fr_FR": "Cette chemise se présente dans une coupe ajustée sans pinces, réalisée en coton avec motif jacquard."
                },
                "cr_macro_color": [
                    {
                        "id": "cr_Yellow",
                        "labels": {
                            "en_GB": "Yellow",
                            "en_US": "Yellow",
                            "fr_FR": "Jaune"
                        }
                    }
                ],
                "cr_marketplaces": [
                    {
                        "id": "veepee",
                        "labels": {
                            "en_GB": "Veepee",
                            "en_US": null,
                            "fr_FR": "veepee"
                        }
                    },
                    {
                        "id": "zalando",
                        "labels": {
                            "en_GB": "Zalando",
                            "en_US": null,
                            "fr_FR": "Zalando"
                        }
                    },
                    {
                        "id": "laredoute",
                        "labels": {
                            "en_GB": "La redoute",
                            "en_US": null,
                            "fr_FR": "La redoute"
                        }
                    }
                ],
                "cr_veepee_title": {
                    "en_GB": "Organic Cotton Smooth Yellow Shirt",
                    "en_US": null,
                    "fr_FR": "<p>Chemise Smooth Jaune en coton biologique</p>"
                },
                "cr_zalando_desc": {
                    "en_GB": null,
                    "en_US": null,
                    "fr_FR": "<ul><li>100 % coton</li></ul><ul><li>Vert</li></ul><ul><li>Coupe ajustée</li></ul><ul><li>Le mannequin porte une taille M française</li></ul><ul><li>Mensurations du mannequin : tour de poitrine 87 cm, taille 186 cm</li></ul><ul><li>Fabriquée en Italie</li></ul>"
                },
                "cr_active_season": {
                    "en_GB": "SS21",
                    "en_US": "SS21",
                    "fr_FR": "SS21"
                },
                "color_ref_is_active": [
                    {
                        "id": "active_yes",
                        "labels": {
                            "en_GB": "Yes",
                            "en_US": "Yes",
                            "fr_FR": "Oui"
                        }
                    }
                ],
                "cr_active_countries": [
                    {
                        "id": "cr_france",
                        "labels": {
                            "en_GB": "France",
                            "en_US": "France",
                            "fr_FR": "France"
                        }
                    },
                    {
                        "id": "cr_italy",
                        "labels": {
                            "en_GB": "Italy",
                            "en_US": "Italy",
                            "fr_FR": "Italie"
                        }
                    },
                    {
                        "id": "cr_portugal",
                        "labels": {
                            "en_GB": "Portugal",
                            "en_US": "Portugal",
                            "fr_FR": "Portugal"
                        }
                    },
                    {
                        "id": "cr_espagne",
                        "labels": {
                            "en_GB": "Spain",
                            "en_US": "Spain",
                            "fr_FR": "Espagne"
                        }
                    },
                    {
                        "id": "cr_united_kingdom",
                        "labels": {
                            "en_GB": "United Kingdom",
                            "en_US": "United Kingdom",
                            "fr_FR": "Royaume-Uni"
                        }
                    }
                ],
                "color_reference_name": {
                    "en_GB": "Smooth Yellow Shirt",
                    "en_US": "Smart shirt ",
                    "fr_FR": "Chemise Smooth Jaune"
                },
                "cr_digital_description": {
                    "en_GB": "<ul><li>100% cotton</li><li>Yellow</li><li>Fitted cut</li><li>The model is wearing a French size M</li><li>Model's measurements: chest measurement 87 cm, waist 186 cm</li><li>Made in Italy</li></ul>",
                    "en_US": null,
                    "fr_FR": "<ul><li>100 % coton</li><li>Vert</li><li>Coupe ajustée</li><li>Le mannequin porte une taille M française</li><li>Mensurations du mannequin : tour de poitrine 87 cm, taille 186 cm</li><li>Fabriquée en Italie</li></ul>"
                },
                "cr_seo_long_description": {
                    "en_GB": "<p>Available in a wide range of bright colours, this classic shirt reflects the colour-block theme of the collection. It is presented in a slim fit without pliers, made from cotton in a tone-on-tone Monogram jacquard weave. Metal buttons adorn the piece at the top of the opening and at the cuffs.</p>",
                    "en_US": null,
                    "fr_FR": "<p>Disponible dans une vaste palette de couleurs vives, cette chemise classique reflète le thème color-block de la collection. Elle se présente dans une coupe ajustée sans pinces, réalisée en coton dans un tissage jacquard Monogram ton sur ton. Des boutons métalliques ornent la pièce en haut de l'ouverture et aux poignets.</p>"
                },
                "cr_seo_short_description": {
                    "en_GB": "This shirt is presented in a slim fit without pliers, made from cotton in a tone-on-tone Monogram jacquard weave.",
                    "en_US": "The Smart T-shirt is an organic cotton T-shirt.",
                    "fr_FR": "Disponible dans une vaste palette de couleurs vives, cette chemise classique reflète le thème color-block de la collection. Elle se présente dans une coupe ajustée sans pinces, réalisée en coton dans un tissage jacquard Monogram ton sur ton."
                }
            },
            "documentType": {
                "@id": "/api/document-types/color_reference",
                "@type": "DocumentType",
                "default": false,
                "id": "color_reference"
            },
            "attributeSet": {
                "@id": "/api/attribute-sets/attr_set_clothes_color_reference",
                "@type": "AttributeSet",
                "id": "attr_set_clothes_color_reference"
            },
            "classifications": [
                {
                    "@type": "Classification",
                    "@id": "/api/classifications/eco_612fa0ff3cddc",
                    "catalogId": "eco",
                    "id": "eco_612fa0ff3cddc",
                    "legacyId": 144
                },
                {
                    "@type": "Classification",
                    "@id": "/api/classifications/classification_shirtsm3",
                    "catalogId": null,
                    "id": "classification_shirtsm3",
                    "legacyId": 1282
                },
                {
                    "@type": "Classification",
                    "@id": "/api/classifications/lrd_6141c684d9e6c",
                    "catalogId": "lrd",
                    "id": "lrd_6141c684d9e6c",
                    "legacyId": 1418
                },
                {
                    "@type": "Classification",
                    "@id": "/api/classifications/vpe_6141c707c04a6",
                    "catalogId": "vpe",
                    "id": "vpe_6141c707c04a6",
                    "legacyId": 1431
                },
                {
                    "@type": "Classification",
                    "@id": "/api/classifications/eco_612fa0ff3cddc",
                    "catalogId": "eco",
                    "id": "eco_612fa0ff3cddc",
                    "legacyId": 144
                },
                {
                    "@type": "Classification",
                    "@id": "/api/classifications/lrd_6141c684d9e6c",
                    "catalogId": "lrd",
                    "id": "lrd_6141c684d9e6c",
                    "legacyId": 1418
                },
                {
                    "@type": "Classification",
                    "@id": "/api/classifications/vpe_6141c707c04a6",
                    "catalogId": "vpe",
                    "id": "vpe_6141c707c04a6",
                    "legacyId": 1431
                }
            ],
            "documentLinks": [
                {
                    "@type": "Link",
                    "@id": "/api/links/9014bc54-0700-4e0c-940c-11b1208864b9",
                    "linkType": {
                        "@type": "LinkType",
                        "@id": "/api/link-types/link_type_reference_reference_color",
                        "id": "link_type_reference_reference_color"
                    },
                    "origin": {
                        "@type": "Document",
                        "@id": "/api/documents/reference_smooth_shirt",
                        "id": "reference_smooth_shirt"
                    },
                    "target": {
                        "@type": "Document",
                        "@id": "/api/documents/color_reference_smooth_yellow_shirt",
                        "id": "color_reference_smooth_yellow_shirt"
                    },
                    "sequence": 2,
                    "id": "9014bc54-0700-4e0c-940c-11b1208864b9",
                    "legacyId": 36
                },
                {
                    "@type": "Link",
                    "@id": "/api/links/78d144a6-b40b-4488-8395-6ecd73715b2c",
                    "linkType": {
                        "@type": "LinkType",
                        "@id": "/api/link-types/link_type_ref_col___ref_col",
                        "id": "link_type_ref_col___ref_col"
                    },
                    "origin": {
                        "@type": "Document",
                        "@id": "/api/documents/color_reference_smooth_green_shirt",
                        "id": "color_reference_smooth_green_shirt"
                    },
                    "target": {
                        "@type": "Document",
                        "@id": "/api/documents/color_reference_smooth_yellow_shirt",
                        "id": "color_reference_smooth_yellow_shirt"
                    },
                    "sequence": 1,
                    "id": "78d144a6-b40b-4488-8395-6ecd73715b2c",
                    "legacyId": 97
                },
                {
                    "@type": "Link",
                    "@id": "/api/links/20868f55-89bd-4833-8791-cde0af5a7781",
                    "linkType": {
                        "@type": "LinkType",
                        "@id": "/api/link-types/link_type_ref_col___ref_col",
                        "id": "link_type_ref_col___ref_col"
                    },
                    "origin": {
                        "@type": "Document",
                        "@id": "/api/documents/color_reference_smooth_yellow_shirt",
                        "id": "color_reference_smooth_yellow_shirt"
                    },
                    "target": {
                        "@type": "Document",
                        "@id": "/api/documents/color_reference_smooth_green_shirt",
                        "id": "color_reference_smooth_green_shirt"
                    },
                    "sequence": 1,
                    "id": "20868f55-89bd-4833-8791-cde0af5a7781",
                    "legacyId": 98
                }
            ],
            "assetLinks": [
                {
                    "@type": "Link",
                    "@id": "/api/links/fc99aba9-2ff4-4c3b-8949-8ef4afe06df0",
                    "linkType": {
                        "@type": "LinkType",
                        "@id": "/api/link-types/article_images_media",
                        "id": "article_images_media"
                    },
                    "origin": {
                        "@type": "Document",
                        "@id": "/api/documents/color_reference_smooth_yellow_shirt",
                        "id": "color_reference_smooth_yellow_shirt"
                    },
                    "target": {
                        "@type": "Asset",
                        "@id": "/api/assets/d77f0c3e-9e35-4268-96ce-front",
                        "id": "d77f0c3e-9e35-4268-96ce-front"
                    },
                    "sequence": 1,
                    "id": "fc99aba9-2ff4-4c3b-8949-8ef4afe06df0",
                    "legacyId": 111
                },
                {
                    "@type": "Link",
                    "@id": "/api/links/32948342-336a-40cd-93c8-e8ec6011ce4e",
                    "linkType": {
                        "@type": "LinkType",
                        "@id": "/api/link-types/color_reference_worn_view",
                        "id": "color_reference_worn_view"
                    },
                    "origin": {
                        "@type": "Document",
                        "@id": "/api/documents/color_reference_smooth_yellow_shirt",
                        "id": "color_reference_smooth_yellow_shirt"
                    },
                    "target": {
                        "@type": "Asset",
                        "@id": "/api/assets/d4eeb935-0cc8-4fd6-95f4-front",
                        "id": "d4eeb935-0cc8-4fd6-95f4-front"
                    },
                    "sequence": 1,
                    "id": "32948342-336a-40cd-93c8-e8ec6011ce4e",
                    "legacyId": 112
                },
                {
                    "@type": "Link",
                    "@id": "/api/links/561a2e6b-ce13-423f-81d2-4062cf7567b7",
                    "linkType": {
                        "@type": "LinkType",
                        "@id": "/api/link-types/color_reference_worn_view",
                        "id": "color_reference_worn_view"
                    },
                    "origin": {
                        "@type": "Document",
                        "@id": "/api/documents/color_reference_smooth_yellow_shirt",
                        "id": "color_reference_smooth_yellow_shirt"
                    },
                    "target": {
                        "@type": "Asset",
                        "@id": "/api/assets/a6fb0816-2808-450b-b840-front",
                        "id": "a6fb0816-2808-450b-b840-front"
                    },
                    "sequence": 2,
                    "id": "561a2e6b-ce13-423f-81d2-4062cf7567b7",
                    "legacyId": 113
                },
                {
                    "@type": "Link",
                    "@id": "/api/links/4401907b-2aef-4fa9-b3b6-05e3e3f6af7d",
                    "linkType": {
                        "@type": "LinkType",
                        "@id": "/api/link-types/color_reference_worn_view",
                        "id": "color_reference_worn_view"
                    },
                    "origin": {
                        "@type": "Document",
                        "@id": "/api/documents/color_reference_smooth_yellow_shirt",
                        "id": "color_reference_smooth_yellow_shirt"
                    },
                    "target": {
                        "@type": "Asset",
                        "@id": "/api/assets/bab194ea-c054-403b-97c3-front",
                        "id": "bab194ea-c054-403b-97c3-front"
                    },
                    "sequence": 3,
                    "id": "4401907b-2aef-4fa9-b3b6-05e3e3f6af7d",
                    "legacyId": 114
                }
            ],
            "workflows": [
                {
                    "@type": "Workflow",
                    "@id": "/api/workflows/workflow_product_workflow",
                    "steps": [
                        {
                            "id": "workflow_product_workflow_enrichment",
                            "color": "blue",
                            "default": false,
                            "name": {
                                "en-US": "Approuvé",
                                "fr-FR": "Contribution"
                            },
                            "description": {
                                "en-US": null,
                                "fr-FR": null
                            }
                        }
                    ],
                    "transitions": [
                        {
                            "id": "workflow_product_workflow_enrichement_started",
                            "originStepId": "workflow_product_workflow_new",
                            "targetStepId": "workflow_product_workflow_enrichment",
                            "name": {
                                "fr-FR": "Contribution KO"
                            },
                            "permissionFeatures": [
                                "role_admin",
                                "role_manager",
                                "role_contributor",
                                "role_iconographer",
                                "role_reader"
                            ]
                        }
                    ],
                    "dateCreated": "2021-08-24T15:58:28+00:00",
                    "dateModified": "2023-03-13T16:33:05+00:00",
                    "id": "workflow_product_workflow"
                }
            ],
            "tags": [
                {
                    "@id": "/api/tags/color_reference_active_product",
                    "@type": "Tag",
                    "id": "color_reference_active_product"
                },
                {
                    "@id": "/api/tags/color_reference_description_ok",
                    "@type": "Tag",
                    "id": "color_reference_description_ok"
                },
                {
                    "@id": "/api/tags/color_reference_e_com_ok",
                    "@type": "Tag",
                    "id": "color_reference_e_com_ok"
                }
            ],
            "completenesses": {
                "completeness_collection_book": {
                    "en_GB": 0.9,
                    "en_US": 0.7,
                    "fr_FR": 0.9
                },
                "completeness_brand_portal": {
                    "en_GB": 1,
                    "en_US": 0.82,
                    "fr_FR": 1
                },
                "completeness_e_commerce": {
                    "en_GB": 0.9,
                    "en_US": 0.7,
                    "fr_FR": 0.9
                }
            },
            "variants": [
                {
                    "@type": "Variant",
                    "@id": "/api/variants/sku_smooth_yellow_shirt_xs",
                    "id": "sku_smooth_yellow_shirt_xs"
                },
                {
                    "@type": "Variant",
                    "@id": "/api/variants/sku_smooth_yellow_shirt_s",
                    "id": "sku_smooth_yellow_shirt_s"
                },
                {
                    "@type": "Variant",
                    "@id": "/api/variants/sku_smooth_yellow_shirt_m",
                    "id": "sku_smooth_yellow_shirt_m"
                }
            ],
            "mainAssetThumbnailUrl": "https://cdn.quable.com/education-developers/d77f0c3e-9e35-4268-96ce-front/thumbnail/yellow-men-shirt-png.jpg",
            "dateCreated": "2021-08-09T13:59:47+00:00",
            "dateModified": "2023-12-08T10:55:32+00:00",
            "id": "color_reference_smooth_yellow_shirt",
            "legacyId": 8
        },
        {
            "@type": "Document",
            "@id": "/api/documents/color_reference_smooth_pink_shirt",
            "active": true,
            "attributes": {
                "cr_occasion": [
                    {
                        "id": "cr_work",
                        "labels": {
                            "en_GB": "Work",
                            "en_US": "Work",
                            "fr_FR": "Travail"
                        }
                    },
                    {
                        "id": "cr_beach",
                        "labels": {
                            "en_GB": "Beach",
                            "en_US": "Beach",
                            "fr_FR": "Plage"
                        }
                    }
                ],
                "cr_seotitle": {
                    "en_GB": "Organic Cotton Smooth Pink Shirt",
                    "en_US": "Organic Cotton Smart Brown Round Collar T-Shirt",
                    "fr_FR": "Chemise Smooth Rose en coton biologique"
                },
                "cr_color_code": [
                    {
                        "id": "cr_8B0000",
                        "labels": {
                            "en_GB": "# 8B0000",
                            "en_US": "# 8B0000",
                            "fr_FR": "# 8B0000"
                        }
                    }
                ],
                "cr_color_name": [
                    {
                        "id": "cr_pink",
                        "labels": {
                            "en_GB": "Pink",
                            "en_US": "Pink",
                            "fr_FR": "Rose"
                        }
                    }
                ],
                "cr_description": {
                    "en_GB": "This classic shirt is presented in a slim fit without pliers, made from cotton in a jacquard weave.",
                    "en_US": "The Smart T-shirt is an organic cotton T-shirt.",
                    "fr_FR": "Cette chemise se présente dans une coupe ajustée sans pinces, réalisée en coton avec motif jacquard."
                },
                "cr_macro_color": [
                    {
                        "id": "cr_Pink",
                        "labels": {
                            "en_GB": "Pink",
                            "en_US": "Pink",
                            "fr_FR": "Rose"
                        }
                    }
                ],
                "cr_marketplaces": [
                    {
                        "id": "veepee",
                        "labels": {
                            "en_GB": "Veepee",
                            "en_US": null,
                            "fr_FR": "veepee"
                        }
                    },
                    {
                        "id": "zalando",
                        "labels": {
                            "en_GB": "Zalando",
                            "en_US": null,
                            "fr_FR": "Zalando"
                        }
                    },
                    {
                        "id": "laredoute",
                        "labels": {
                            "en_GB": "La redoute",
                            "en_US": null,
                            "fr_FR": "La redoute"
                        }
                    }
                ],
                "cr_veepee_title": {
                    "en_GB": "Organic Cotton Smooth Pink Shirt",
                    "en_US": null,
                    "fr_FR": "<p>Chemise Smooth Rose en coton biologique</p>"
                },
                "cr_active_season": {
                    "en_GB": "SS21",
                    "en_US": "SS21",
                    "fr_FR": "SS21"
                },
                "color_ref_is_active": [
                    {
                        "id": "active_yes",
                        "labels": {
                            "en_GB": "Yes",
                            "en_US": "Yes",
                            "fr_FR": "Oui"
                        }
                    }
                ],
                "cr_active_countries": [
                    {
                        "id": "cr_france",
                        "labels": {
                            "en_GB": "France",
                            "en_US": "France",
                            "fr_FR": "France"
                        }
                    },
                    {
                        "id": "cr_italy",
                        "labels": {
                            "en_GB": "Italy",
                            "en_US": "Italy",
                            "fr_FR": "Italie"
                        }
                    },
                    {
                        "id": "cr_portugal",
                        "labels": {
                            "en_GB": "Portugal",
                            "en_US": "Portugal",
                            "fr_FR": "Portugal"
                        }
                    },
                    {
                        "id": "cr_espagne",
                        "labels": {
                            "en_GB": "Spain",
                            "en_US": "Spain",
                            "fr_FR": "Espagne"
                        }
                    },
                    {
                        "id": "cr_united_kingdom",
                        "labels": {
                            "en_GB": "United Kingdom",
                            "en_US": "United Kingdom",
                            "fr_FR": "Royaume-Uni"
                        }
                    }
                ],
                "color_reference_name": {
                    "en_GB": "Smooth Pink Shirt",
                    "en_US": "Smart Brown T-shirt ",
                    "fr_FR": "Chemise Smooth Rose"
                },
                "cr_digital_description": {
                    "en_GB": "<ul><li>100% cotton</li><li>Pink</li><li>Fitted cut</li><li>The model is wearing a French size M</li><li>Model's measurements: chest measurement 87 cm, waist 186 cm</li><li>Made in Italy</li></ul>",
                    "en_US": null,
                    "fr_FR": "<ul><li>100 % coton</li><li>Vert</li><li>Coupe ajustée</li><li>Le mannequin porte une taille M française</li><li>Mensurations du mannequin : tour de poitrine 87 cm, taille 186 cm</li><li>Fabriquée en Italie</li></ul>"
                },
                "cr_seo_long_description": {
                    "en_GB": "<p>Et eodem impetu Domitianum praecipitem per scalas itidem funibus constrinxerunt, eosque coniunctos per ampla spatia civitatis acri raptavere discursu. iamque artuum et membrorum divulsa conpage superscandentes corpora mortuorum ad ultimam truncata deformitatem velut exsaturati mox abiecerunt in flumen.</p>",
                    "en_US": null,
                    "fr_FR": "<p>Disponible dans une vaste palette de couleurs vives, cette chemise classique reflète le thème color-block de la collection. Elle se présente dans une coupe ajustée sans pinces, réalisée en coton dans un tissage jacquard Monogram ton sur ton. Des boutons métalliques ornent la pièce en haut de l'ouverture et aux poignets.</p>"
                },
                "cr_seo_short_description": {
                    "en_GB": "This shirt is presented in a slim fit without pliers, made from cotton in a tone-on-tone Monogram jacquard weave.",
                    "en_US": "The Smart T-shirt is an organic cotton T-shirt.",
                    "fr_FR": "Disponible dans une vaste palette de couleurs vives, cette chemise classique reflète le thème color-block de la collection. Elle se présente dans une coupe ajustée sans pinces, réalisée en coton dans un tissage jacquard Monogram ton sur ton."
                }
            },
            "documentType": {
                "@id": "/api/document-types/color_reference",
                "@type": "DocumentType",
                "default": false,
                "id": "color_reference"
            },
            "attributeSet": {
                "@id": "/api/attribute-sets/attr_set_clothes_color_reference",
                "@type": "AttributeSet",
                "id": "attr_set_clothes_color_reference"
            },
            "classifications": [
                {
                    "@type": "Classification",
                    "@id": "/api/classifications/eco_612fa0ff3cddc",
                    "catalogId": "eco",
                    "id": "eco_612fa0ff3cddc",
                    "legacyId": 144
                },
                {
                    "@type": "Classification",
                    "@id": "/api/classifications/classification_shirtsm3",
                    "catalogId": null,
                    "id": "classification_shirtsm3",
                    "legacyId": 1282
                },
                {
                    "@type": "Classification",
                    "@id": "/api/classifications/lrd_6141c684d9e6c",
                    "catalogId": "lrd",
                    "id": "lrd_6141c684d9e6c",
                    "legacyId": 1418
                },
                {
                    "@type": "Classification",
                    "@id": "/api/classifications/vpe_6141c707c04a6",
                    "catalogId": "vpe",
                    "id": "vpe_6141c707c04a6",
                    "legacyId": 1431
                },
                {
                    "@type": "Classification",
                    "@id": "/api/classifications/lrd_6141c784e7268",
                    "catalogId": "lrd",
                    "id": "lrd_6141c784e7268",
                    "legacyId": 1436
                },
                {
                    "@type": "Classification",
                    "@id": "/api/classifications/eco_612fa0ff3cddc",
                    "catalogId": "eco",
                    "id": "eco_612fa0ff3cddc",
                    "legacyId": 144
                },
                {
                    "@type": "Classification",
                    "@id": "/api/classifications/lrd_6141c684d9e6c",
                    "catalogId": "lrd",
                    "id": "lrd_6141c684d9e6c",
                    "legacyId": 1418
                },
                {
                    "@type": "Classification",
                    "@id": "/api/classifications/vpe_6141c707c04a6",
                    "catalogId": "vpe",
                    "id": "vpe_6141c707c04a6",
                    "legacyId": 1431
                },
                {
                    "@type": "Classification",
                    "@id": "/api/classifications/lrd_6141c784e7268",
                    "catalogId": "lrd",
                    "id": "lrd_6141c784e7268",
                    "legacyId": 1436
                }
            ],
            "documentLinks": [
                {
                    "@type": "Link",
                    "@id": "/api/links/b91b6312-4304-4732-aa0a-d88de6d5df78",
                    "linkType": {
                        "@type": "LinkType",
                        "@id": "/api/link-types/link_type_reference_reference_color",
                        "id": "link_type_reference_reference_color"
                    },
                    "origin": {
                        "@type": "Document",
                        "@id": "/api/documents/reference_smooth_shirt",
                        "id": "reference_smooth_shirt"
                    },
                    "target": {
                        "@type": "Document",
                        "@id": "/api/documents/color_reference_smooth_pink_shirt",
                        "id": "color_reference_smooth_pink_shirt"
                    },
                    "sequence": 3,
                    "id": "b91b6312-4304-4732-aa0a-d88de6d5df78",
                    "legacyId": 216
                },
                {
                    "@type": "Link",
                    "@id": "/api/links/d8a82027-9edc-4a18-ba6e-c7b527d47670",
                    "linkType": {
                        "@type": "LinkType",
                        "@id": "/api/link-types/link_type_color_reference___material",
                        "id": "link_type_color_reference___material"
                    },
                    "origin": {
                        "@type": "Document",
                        "@id": "/api/documents/color_reference_smooth_pink_shirt",
                        "id": "color_reference_smooth_pink_shirt"
                    },
                    "target": {
                        "@type": "Document",
                        "@id": "/api/documents/pink_fabric",
                        "id": "pink_fabric"
                    },
                    "sequence": 1,
                    "id": "d8a82027-9edc-4a18-ba6e-c7b527d47670",
                    "legacyId": 191
                },
                {
                    "@type": "Link",
                    "@id": "/api/links/661bc042-cb09-409e-886f-7dbe4f3b32fa",
                    "linkType": {
                        "@type": "LinkType",
                        "@id": "/api/link-types/link_type_look_color_reference",
                        "id": "link_type_look_color_reference"
                    },
                    "origin": {
                        "@type": "Document",
                        "@id": "/api/documents/men_look_01",
                        "id": "men_look_01"
                    },
                    "target": {
                        "@type": "Document",
                        "@id": "/api/documents/color_reference_smooth_pink_shirt",
                        "id": "color_reference_smooth_pink_shirt"
                    },
                    "sequence": 2,
                    "id": "661bc042-cb09-409e-886f-7dbe4f3b32fa",
                    "legacyId": 149
                }
            ],
            "assetLinks": [
                {
                    "@type": "Link",
                    "@id": "/api/links/e32c8221-ec7a-4f48-8949-0d1507568866",
                    "linkType": {
                        "@type": "LinkType",
                        "@id": "/api/link-types/article_images_media",
                        "id": "article_images_media"
                    },
                    "origin": {
                        "@type": "Document",
                        "@id": "/api/documents/color_reference_smooth_pink_shirt",
                        "id": "color_reference_smooth_pink_shirt"
                    },
                    "target": {
                        "@type": "Asset",
                        "@id": "/api/assets/2e5e3843-7838-45ea-a859-front",
                        "id": "2e5e3843-7838-45ea-a859-front"
                    },
                    "sequence": 1,
                    "id": "e32c8221-ec7a-4f48-8949-0d1507568866",
                    "legacyId": 144
                },
                {
                    "@type": "Link",
                    "@id": "/api/links/0d020c57-98ad-4351-9a47-486457da9688",
                    "linkType": {
                        "@type": "LinkType",
                        "@id": "/api/link-types/color_reference_worn_view",
                        "id": "color_reference_worn_view"
                    },
                    "origin": {
                        "@type": "Document",
                        "@id": "/api/documents/color_reference_smooth_pink_shirt",
                        "id": "color_reference_smooth_pink_shirt"
                    },
                    "target": {
                        "@type": "Asset",
                        "@id": "/api/assets/5f103b86-2aa9-4b4a-8a76-front",
                        "id": "5f103b86-2aa9-4b4a-8a76-front"
                    },
                    "sequence": 1,
                    "id": "0d020c57-98ad-4351-9a47-486457da9688",
                    "legacyId": 146
                },
                {
                    "@type": "Link",
                    "@id": "/api/links/acef24a8-6447-47fe-9cac-afbb7dc27b10",
                    "linkType": {
                        "@type": "LinkType",
                        "@id": "/api/link-types/color_reference_worn_view",
                        "id": "color_reference_worn_view"
                    },
                    "origin": {
                        "@type": "Document",
                        "@id": "/api/documents/color_reference_smooth_pink_shirt",
                        "id": "color_reference_smooth_pink_shirt"
                    },
                    "target": {
                        "@type": "Asset",
                        "@id": "/api/assets/c34de735-f7ae-418b-b319-front",
                        "id": "c34de735-f7ae-418b-b319-front"
                    },
                    "sequence": 2,
                    "id": "acef24a8-6447-47fe-9cac-afbb7dc27b10",
                    "legacyId": 145
                },
                {
                    "@type": "Link",
                    "@id": "/api/links/5d413ece-8681-4c29-a56a-98c0d8a4e2b4",
                    "linkType": {
                        "@type": "LinkType",
                        "@id": "/api/link-types/color_reference_worn_view",
                        "id": "color_reference_worn_view"
                    },
                    "origin": {
                        "@type": "Document",
                        "@id": "/api/documents/color_reference_smooth_pink_shirt",
                        "id": "color_reference_smooth_pink_shirt"
                    },
                    "target": {
                        "@type": "Asset",
                        "@id": "/api/assets/0b215bbd-2d47-44b8-b59e-front",
                        "id": "0b215bbd-2d47-44b8-b59e-front"
                    },
                    "sequence": 3,
                    "id": "5d413ece-8681-4c29-a56a-98c0d8a4e2b4",
                    "legacyId": 147
                }
            ],
            "workflows": [
                {
                    "@type": "Workflow",
                    "@id": "/api/workflows/workflow_product_workflow",
                    "steps": [
                        {
                            "id": "workflow_product_workflow_new",
                            "color": "turquoise",
                            "default": true,
                            "name": {
                                "en-US": "Init",
                                "fr-FR": "Nouveau"
                            },
                            "description": {
                                "en-US": null,
                                "fr-FR": null
                            }
                        }
                    ],
                    "transitions": [
                        {
                            "id": "workflow_product_workflow_enrichement_started",
                            "originStepId": "workflow_product_workflow_new",
                            "targetStepId": "workflow_product_workflow_enrichment",
                            "name": {
                                "fr-FR": "Contribution KO"
                            },
                            "permissionFeatures": [
                                "role_admin",
                                "role_manager",
                                "role_contributor",
                                "role_iconographer",
                                "role_reader"
                            ]
                        }
                    ],
                    "dateCreated": "2021-08-24T15:58:28+00:00",
                    "dateModified": "2023-03-13T16:33:05+00:00",
                    "id": "workflow_product_workflow"
                }
            ],
            "tags": [
                {
                    "@id": "/api/tags/color_reference_active_product",
                    "@type": "Tag",
                    "id": "color_reference_active_product"
                },
                {
                    "@id": "/api/tags/color_reference_description_ok",
                    "@type": "Tag",
                    "id": "color_reference_description_ok"
                },
                {
                    "@id": "/api/tags/color_reference_e_com_ok",
                    "@type": "Tag",
                    "id": "color_reference_e_com_ok"
                }
            ],
            "completenesses": {
                "completeness_collection_book": {
                    "en_GB": 1,
                    "en_US": 0.8,
                    "fr_FR": 1
                },
                "completeness_brand_portal": {
                    "en_GB": 1,
                    "en_US": 0.82,
                    "fr_FR": 1
                },
                "completeness_e_commerce": {
                    "en_GB": 0.9,
                    "en_US": 0.7,
                    "fr_FR": 0.9
                }
            },
            "variants": [
                {
                    "@type": "Variant",
                    "@id": "/api/variants/sku_shirt_pink_smooth_size_XS",
                    "id": "sku_shirt_pink_smooth_size_XS"
                },
                {
                    "@type": "Variant",
                    "@id": "/api/variants/sku_shirt_pink_smooth_size_s",
                    "id": "sku_shirt_pink_smooth_size_s"
                }
            ],
            "mainAssetThumbnailUrl": "https://cdn.quable.com/education-developers/2e5e3843-7838-45ea-a859-front/thumbnail/pink-men-shirt-png.jpg",
            "dateCreated": "2021-08-23T16:16:11+00:00",
            "dateModified": "2023-11-14T10:10:36+00:00",
            "id": "color_reference_smooth_pink_shirt",
            "legacyId": 22
        },
        {
            "@type": "Document",
            "@id": "/api/documents/color_reference_spring_dress",
            "active": true,
            "attributes": {
                "cr_occasion": [
                    {
                        "id": "cr_summer",
                        "labels": {
                            "en_GB": "Summer",
                            "en_US": "Summer",
                            "fr_FR": "Eté"
                        }
                    },
                    {
                        "id": "cr_ceremony",
                        "labels": {
                            "en_GB": "Ceremony",
                            "en_US": "Ceremony",
                            "fr_FR": "Cérémonie"
                        }
                    }
                ],
                "cr_seotitle": {
                    "en_GB": "Spring dress",
                    "en_US": null,
                    "fr_FR": "Robe printemps"
                },
                "cr_color_name": [
                    {
                        "id": "cr_ivory",
                        "labels": {
                            "en_GB": "Ivory",
                            "en_US": "Ivory",
                            "fr_FR": "Ivoire"
                        }
                    }
                ],
                "cr_description": {
                    "en_GB": "White spring dress",
                    "en_US": null,
                    "fr_FR": "Robe printanière, parfaite pour les beaux jours"
                },
                "cr_macro_color": [
                    {
                        "id": "cr_white",
                        "labels": {
                            "en_GB": "white",
                            "en_US": "white",
                            "fr_FR": "blanc"
                        }
                    }
                ],
                "cr_marketplaces": [
                    {
                        "id": "veepee",
                        "labels": {
                            "en_GB": "Veepee",
                            "en_US": null,
                            "fr_FR": "veepee"
                        }
                    },
                    {
                        "id": "zalando",
                        "labels": {
                            "en_GB": "Zalando",
                            "en_US": null,
                            "fr_FR": "Zalando"
                        }
                    },
                    {
                        "id": "laredoute",
                        "labels": {
                            "en_GB": "La redoute",
                            "en_US": null,
                            "fr_FR": "La redoute"
                        }
                    }
                ],
                "cr_veepee_title": {
                    "en_GB": "Spring dress",
                    "en_US": null,
                    "fr_FR": "<p>Robe printemps</p>"
                },
                "cr_active_season": {
                    "en_GB": "Spring - Summer 2021",
                    "en_US": null,
                    "fr_FR": null
                },
                "color_ref_is_active": [
                    {
                        "id": "active_yes",
                        "labels": {
                            "en_GB": "Yes",
                            "en_US": "Yes",
                            "fr_FR": "Oui"
                        }
                    }
                ],
                "cr_active_countries": [
                    {
                        "id": "cr_france",
                        "labels": {
                            "en_GB": "France",
                            "en_US": "France",
                            "fr_FR": "France"
                        }
                    },
                    {
                        "id": "cr_italy",
                        "labels": {
                            "en_GB": "Italy",
                            "en_US": "Italy",
                            "fr_FR": "Italie"
                        }
                    },
                    {
                        "id": "cr_portugal",
                        "labels": {
                            "en_GB": "Portugal",
                            "en_US": "Portugal",
                            "fr_FR": "Portugal"
                        }
                    },
                    {
                        "id": "cr_espagne",
                        "labels": {
                            "en_GB": "Spain",
                            "en_US": "Spain",
                            "fr_FR": "Espagne"
                        }
                    },
                    {
                        "id": "cr_united_kingdom",
                        "labels": {
                            "en_GB": "United Kingdom",
                            "en_US": "United Kingdom",
                            "fr_FR": "Royaume-Uni"
                        }
                    }
                ],
                "color_reference_name": {
                    "en_GB": "Spring dress",
                    "en_US": null,
                    "fr_FR": "Robe printemps"
                },
                "cr_digital_description": {
                    "en_GB": "<p>This dress is perfect for Spring! <br>It’s a must-have.&nbsp;</p><p>It can be worn with fantasy accessories to bring some fun on the look.&nbsp;</p><p>It can be perfect with high heels or classic derbies.</p><p><br></p>",
                    "en_US": null,
                    "fr_FR": "<p>Robe printanière, parfaite pour les beaux jours, avec des chaussures plates, des sandales, des mules, des baskets, qu’importe, tout vous ira avec ce petit bijou!</p>"
                },
                "cr_seo_long_description": {
                    "en_GB": "<p>This dress is perfect for Spring! <br>It’s a must-have.&nbsp;</p><p>It can be worn with fantasy accessories to bring some fun on the look.&nbsp;</p><p>It can be perfect with high heels or classic derbies.</p><p><br></p>",
                    "en_US": null,
                    "fr_FR": "<p>Robe printanière, parfaite pour les beaux jours, avec des chaussures plates, des sandales, des mules, des baskets, qu’importe, tout vous ira avec ce petit bijou!</p>"
                },
                "cr_seo_short_description": {
                    "en_GB": "This jacket will give you a strict and formal allure, while being totally modern.",
                    "en_US": null,
                    "fr_FR": "Robe printanière, parfaite pour les beaux jours, n’hésitez pas à accessoiriser le look avec des lunettes de soleil et des bijoux originaux."
                }
            },
            "documentType": {
                "@id": "/api/document-types/color_reference",
                "@type": "DocumentType",
                "default": false,
                "id": "color_reference"
            },
            "attributeSet": {
                "@id": "/api/attribute-sets/attr_set_clothes_color_reference",
                "@type": "AttributeSet",
                "id": "attr_set_clothes_color_reference"
            },
            "classifications": [
                {
                    "@type": "Classification",
                    "@id": "/api/classifications/eco_612fa04e11547",
                    "catalogId": "eco",
                    "id": "eco_612fa04e11547",
                    "legacyId": 141
                },
                {
                    "@type": "Classification",
                    "@id": "/api/classifications/classification_dresses5",
                    "catalogId": null,
                    "id": "classification_dresses5",
                    "legacyId": 1312
                },
                {
                    "@type": "Classification",
                    "@id": "/api/classifications/lrd_6141c68d42c19",
                    "catalogId": "lrd",
                    "id": "lrd_6141c68d42c19",
                    "legacyId": 1419
                },
                {
                    "@type": "Classification",
                    "@id": "/api/classifications/vpe_6141c7278bf51",
                    "catalogId": "vpe",
                    "id": "vpe_6141c7278bf51",
                    "legacyId": 1434
                },
                {
                    "@type": "Classification",
                    "@id": "/api/classifications/lrd_6141c784e7268",
                    "catalogId": "lrd",
                    "id": "lrd_6141c784e7268",
                    "legacyId": 1436
                },
                {
                    "@type": "Classification",
                    "@id": "/api/classifications/lrd_6141c68d42c19",
                    "catalogId": "lrd",
                    "id": "lrd_6141c68d42c19",
                    "legacyId": 1419
                },
                {
                    "@type": "Classification",
                    "@id": "/api/classifications/vpe_6141c7278bf51",
                    "catalogId": "vpe",
                    "id": "vpe_6141c7278bf51",
                    "legacyId": 1434
                },
                {
                    "@type": "Classification",
                    "@id": "/api/classifications/lrd_6141c784e7268",
                    "catalogId": "lrd",
                    "id": "lrd_6141c784e7268",
                    "legacyId": 1436
                }
            ],
            "documentLinks": [
                {
                    "@type": "Link",
                    "@id": "/api/links/dcdb75a1-fb87-4a23-ba24-f82716f220f1",
                    "linkType": {
                        "@type": "LinkType",
                        "@id": "/api/link-types/link_type_reference_reference_color",
                        "id": "link_type_reference_reference_color"
                    },
                    "origin": {
                        "@type": "Document",
                        "@id": "/api/documents/reference_dress",
                        "id": "reference_dress"
                    },
                    "target": {
                        "@type": "Document",
                        "@id": "/api/documents/color_reference_spring_dress",
                        "id": "color_reference_spring_dress"
                    },
                    "sequence": 1,
                    "id": "dcdb75a1-fb87-4a23-ba24-f82716f220f1",
                    "legacyId": 266
                },
                {
                    "@type": "Link",
                    "@id": "/api/links/57b588a4-7a82-4706-84e4-4d0ddcc05160",
                    "linkType": {
                        "@type": "LinkType",
                        "@id": "/api/link-types/link_type_color_reference___material",
                        "id": "link_type_color_reference___material"
                    },
                    "origin": {
                        "@type": "Document",
                        "@id": "/api/documents/color_reference_spring_dress",
                        "id": "color_reference_spring_dress"
                    },
                    "target": {
                        "@type": "Document",
                        "@id": "/api/documents/material_crossed_wool",
                        "id": "material_crossed_wool"
                    },
                    "sequence": 1,
                    "id": "57b588a4-7a82-4706-84e4-4d0ddcc05160",
                    "legacyId": 242
                },
                {
                    "@type": "Link",
                    "@id": "/api/links/8548cb69-1d34-413c-8d00-25d6c9c677ef",
                    "linkType": {
                        "@type": "LinkType",
                        "@id": "/api/link-types/link_type_color_reference___material",
                        "id": "link_type_color_reference___material"
                    },
                    "origin": {
                        "@type": "Document",
                        "@id": "/api/documents/color_reference_spring_dress",
                        "id": "color_reference_spring_dress"
                    },
                    "target": {
                        "@type": "Document",
                        "@id": "/api/documents/material_white_cotton",
                        "id": "material_white_cotton"
                    },
                    "sequence": 2,
                    "id": "8548cb69-1d34-413c-8d00-25d6c9c677ef",
                    "legacyId": 255
                },
                {
                    "@type": "Link",
                    "@id": "/api/links/ae0f440d-241f-461d-84ae-670eead96114",
                    "linkType": {
                        "@type": "LinkType",
                        "@id": "/api/link-types/link_type_look_color_reference",
                        "id": "link_type_look_color_reference"
                    },
                    "origin": {
                        "@type": "Document",
                        "@id": "/api/documents/look_spring",
                        "id": "look_spring"
                    },
                    "target": {
                        "@type": "Document",
                        "@id": "/api/documents/color_reference_spring_dress",
                        "id": "color_reference_spring_dress"
                    },
                    "sequence": 1,
                    "id": "ae0f440d-241f-461d-84ae-670eead96114",
                    "legacyId": 247
                }
            ],
            "assetLinks": [
                {
                    "@type": "Link",
                    "@id": "/api/links/09434bed-fdaf-46bc-abf3-17468a89f96e",
                    "linkType": {
                        "@type": "LinkType",
                        "@id": "/api/link-types/article_images_media",
                        "id": "article_images_media"
                    },
                    "origin": {
                        "@type": "Document",
                        "@id": "/api/documents/color_reference_spring_dress",
                        "id": "color_reference_spring_dress"
                    },
                    "target": {
                        "@type": "Asset",
                        "@id": "/api/assets/c26598d5-35c4-410c-b960-front",
                        "id": "c26598d5-35c4-410c-b960-front"
                    },
                    "sequence": 1,
                    "id": "09434bed-fdaf-46bc-abf3-17468a89f96e",
                    "legacyId": 289
                },
                {
                    "@type": "Link",
                    "@id": "/api/links/8a2d9c6e-7a03-4110-89da-b08efa7b7f19",
                    "linkType": {
                        "@type": "LinkType",
                        "@id": "/api/link-types/color_reference_worn_view",
                        "id": "color_reference_worn_view"
                    },
                    "origin": {
                        "@type": "Document",
                        "@id": "/api/documents/color_reference_spring_dress",
                        "id": "color_reference_spring_dress"
                    },
                    "target": {
                        "@type": "Asset",
                        "@id": "/api/assets/c26598d5-35c4-410c-b960-front",
                        "id": "c26598d5-35c4-410c-b960-front"
                    },
                    "sequence": 2,
                    "id": "8a2d9c6e-7a03-4110-89da-b08efa7b7f19",
                    "legacyId": 248
                },
                {
                    "@type": "Link",
                    "@id": "/api/links/27e149d9-44c6-47f6-a74a-a272af550acb",
                    "linkType": {
                        "@type": "LinkType",
                        "@id": "/api/link-types/color_reference_worn_view",
                        "id": "color_reference_worn_view"
                    },
                    "origin": {
                        "@type": "Document",
                        "@id": "/api/documents/color_reference_spring_dress",
                        "id": "color_reference_spring_dress"
                    },
                    "target": {
                        "@type": "Asset",
                        "@id": "/api/assets/0fef8af8-b7cc-4fd4-be1a-front",
                        "id": "0fef8af8-b7cc-4fd4-be1a-front"
                    },
                    "sequence": 3,
                    "id": "27e149d9-44c6-47f6-a74a-a272af550acb",
                    "legacyId": 249
                }
            ],
            "workflows": [
                {
                    "@type": "Workflow",
                    "@id": "/api/workflows/workflow_product_workflow",
                    "steps": [
                        {
                            "id": "workflow_product_workflow_new",
                            "color": "turquoise",
                            "default": true,
                            "name": {
                                "en-US": "Init",
                                "fr-FR": "Nouveau"
                            },
                            "description": {
                                "en-US": null,
                                "fr-FR": null
                            }
                        }
                    ],
                    "transitions": [
                        {
                            "id": "workflow_product_workflow_enrichement_started",
                            "originStepId": "workflow_product_workflow_new",
                            "targetStepId": "workflow_product_workflow_enrichment",
                            "name": {
                                "fr-FR": "Contribution KO"
                            },
                            "permissionFeatures": [
                                "role_admin",
                                "role_manager",
                                "role_contributor",
                                "role_iconographer",
                                "role_reader"
                            ]
                        }
                    ],
                    "dateCreated": "2021-08-24T15:58:28+00:00",
                    "dateModified": "2023-03-13T16:33:05+00:00",
                    "id": "workflow_product_workflow"
                }
            ],
            "tags": [
                {
                    "@id": "/api/tags/color_reference_active_product",
                    "@type": "Tag",
                    "id": "color_reference_active_product"
                },
                {
                    "@id": "/api/tags/color_reference_description_ok",
                    "@type": "Tag",
                    "id": "color_reference_description_ok"
                },
                {
                    "@id": "/api/tags/color_reference_e_com_ok",
                    "@type": "Tag",
                    "id": "color_reference_e_com_ok"
                }
            ],
            "completenesses": {
                "completeness_collection_book": {
                    "en_GB": 1,
                    "en_US": 0.4,
                    "fr_FR": 0.9
                },
                "completeness_brand_portal": {
                    "en_GB": 1,
                    "en_US": 0.36,
                    "fr_FR": 0.91
                },
                "completeness_e_commerce": {
                    "en_GB": 0.9,
                    "en_US": 0.2,
                    "fr_FR": 0.8
                }
            },
            "variants": [
                {
                    "@type": "Variant",
                    "@id": "/api/variants/SPRINGD-M",
                    "id": "SPRINGD-M"
                },
                {
                    "@type": "Variant",
                    "@id": "/api/variants/SPRINGD-L",
                    "id": "SPRINGD-L"
                },
                {
                    "@type": "Variant",
                    "@id": "/api/variants/SPRINGD-XL",
                    "id": "SPRINGD-XL"
                }
            ],
            "mainAssetThumbnailUrl": "https://cdn.quable.com/education-developers/c26598d5-35c4-410c-b960-front/thumbnail/spring-dress-png.jpg",
            "dateCreated": "2021-09-06T14:36:37+00:00",
            "dateModified": "2023-04-26T09:39:24+00:00",
            "id": "color_reference_spring_dress",
            "legacyId": 40
        },
        {
            "@type": "Document",
            "@id": "/api/documents/material_crossed_wool",
            "active": true,
            "attributes": {
                "mat_origine": [
                    {
                        "id": "mat_animal",
                        "labels": {
                            "en_GB": "Animal",
                            "en_US": "Animal",
                            "fr_FR": "Animale"
                        }
                    }
                ],
                "material_name": {
                    "en_GB": "Crossed grey wool",
                    "en_US": "Cuir",
                    "fr_FR": "Laine grise croisée"
                },
                "mat_color_code": [
                    {
                        "id": "ffffff",
                        "labels": {
                            "en_GB": "#FFFFFF",
                            "en_US": "#FFFFFF",
                            "fr_FR": "#FFFFFF"
                        }
                    }
                ],
                "mat_color_name": [
                    {
                        "id": "grey",
                        "labels": {
                            "en_GB": "Grey",
                            "en_US": "Grey",
                            "fr_FR": "Gris"
                        }
                    }
                ],
                "mat_country_orig": [
                    {
                        "id": "mat_india",
                        "labels": {
                            "en_GB": "India",
                            "en_US": "India",
                            "fr_FR": "Inde"
                        }
                    }
                ],
                "mat_color_description": {
                    "en_GB": "Dark grey",
                    "en_US": "m",
                    "fr_FR": "Gris foncé"
                },
                "mat_composition_material_1": [
                    {
                        "id": "wool",
                        "labels": {
                            "en_GB": "Wool",
                            "en_US": "Wool",
                            "fr_FR": "Laine"
                        }
                    }
                ],
                "mat_composition_material_2": [
                    {
                        "id": "polyester2",
                        "labels": {
                            "en_GB": "Polyester",
                            "en_US": "Polyester",
                            "fr_FR": "Polyester"
                        }
                    }
                ],
                "mat_perc_composition_material_1": 99,
                "mat_perc_composition_material_2": 1
            },
            "documentType": {
                "@id": "/api/document-types/material",
                "@type": "DocumentType",
                "default": false,
                "id": "material"
            },
            "attributeSet": null,
            "classifications": [
                {
                    "@type": "Classification",
                    "@id": "/api/classifications/classification_materials",
                    "catalogId": null,
                    "id": "classification_materials",
                    "legacyId": 129
                }
            ],
            "documentLinks": [
                {
                    "@type": "Link",
                    "@id": "/api/links/075fa483-6195-4010-b32a-9eb833b23530",
                    "linkType": {
                        "@type": "LinkType",
                        "@id": "/api/link-types/link_type_color_reference___material",
                        "id": "link_type_color_reference___material"
                    },
                    "origin": {
                        "@type": "Document",
                        "@id": "/api/documents/color_reference_lb_coat",
                        "id": "color_reference_lb_coat"
                    },
                    "target": {
                        "@type": "Document",
                        "@id": "/api/documents/material_crossed_wool",
                        "id": "material_crossed_wool"
                    },
                    "sequence": 1,
                    "id": "075fa483-6195-4010-b32a-9eb833b23530",
                    "legacyId": 240
                },
                {
                    "@type": "Link",
                    "@id": "/api/links/57b588a4-7a82-4706-84e4-4d0ddcc05160",
                    "linkType": {
                        "@type": "LinkType",
                        "@id": "/api/link-types/link_type_color_reference___material",
                        "id": "link_type_color_reference___material"
                    },
                    "origin": {
                        "@type": "Document",
                        "@id": "/api/documents/color_reference_spring_dress",
                        "id": "color_reference_spring_dress"
                    },
                    "target": {
                        "@type": "Document",
                        "@id": "/api/documents/material_crossed_wool",
                        "id": "material_crossed_wool"
                    },
                    "sequence": 1,
                    "id": "57b588a4-7a82-4706-84e4-4d0ddcc05160",
                    "legacyId": 242
                }
            ],
            "assetLinks": [
                {
                    "@type": "Link",
                    "@id": "/api/links/773d9499-e7a2-4f59-8b1e-d297b92178c9",
                    "linkType": {
                        "@type": "LinkType",
                        "@id": "/api/link-types/article_images_media",
                        "id": "article_images_media"
                    },
                    "origin": {
                        "@type": "Document",
                        "@id": "/api/documents/material_crossed_wool",
                        "id": "material_crossed_wool"
                    },
                    "target": {
                        "@type": "Asset",
                        "@id": "/api/assets/360915d1-b017-449c-ad2e-front",
                        "id": "360915d1-b017-449c-ad2e-front"
                    },
                    "sequence": 1,
                    "id": "773d9499-e7a2-4f59-8b1e-d297b92178c9",
                    "legacyId": 236
                }
            ],
            "workflows": [],
            "tags": [
                {
                    "@id": "/api/tags/all_documents_new_6130edc940e9b",
                    "@type": "Tag",
                    "id": "all_documents_new_6130edc940e9b"
                }
            ],
            "completenesses": [],
            "variants": [],
            "mainAssetThumbnailUrl": "https://cdn.quable.com/education-developers/360915d1-b017-449c-ad2e-front/thumbnail/grey-wool-png.jpg",
            "dateCreated": "2021-08-09T14:28:01+00:00",
            "dateModified": "2023-12-08T10:46:20+00:00",
            "id": "material_crossed_wool",
            "legacyId": 9
        },
        {
            "@type": "Document",
            "@id": "/api/documents/reference_dress",
            "active": true,
            "attributes": {
                "r_type": [
                    {
                        "id": "dress",
                        "labels": {
                            "en_GB": "Dress",
                            "en_US": "Dress",
                            "fr_FR": "Robe"
                        }
                    }
                ],
                "r_brand": [
                    {
                        "id": "brand2",
                        "labels": {
                            "en_GB": "Brand 2",
                            "en_US": "Brand 2",
                            "fr_FR": "Marque 2"
                        }
                    }
                ],
                "r_season": [
                    {
                        "id": "ss21",
                        "labels": {
                            "en_GB": "SS21",
                            "en_US": "SS21",
                            "fr_FR": "PE21"
                        }
                    }
                ],
                "r_status": [
                    {
                        "id": "ref_active",
                        "labels": {
                            "en_GB": "Active",
                            "en_US": "Active",
                            "fr_FR": "Actif"
                        }
                    }
                ],
                "r_made_in": [
                    {
                        "id": "italy",
                        "labels": {
                            "en_GB": "Italy",
                            "en_US": "Italy",
                            "fr_FR": "Italie"
                        }
                    }
                ],
                "r_washing": [
                    {
                        "id": "30_degrees",
                        "labels": {
                            "en_GB": "30 degrees",
                            "en_US": "30 degrees",
                            "fr_FR": "30 degrés"
                        }
                    }
                ],
                "r_pressing": [
                    {
                        "id": "hot",
                        "labels": {
                            "en_GB": "Hot",
                            "en_US": "Hot",
                            "fr_FR": "Chaud"
                        }
                    }
                ],
                "r_supplier": [
                    {
                        "id": "supplier1",
                        "labels": {
                            "en_GB": "Supplier 1",
                            "en_US": "Supplier 1",
                            "fr_FR": "Fournisseur 1"
                        }
                    }
                ],
                "r_long_name": {
                    "en_GB": null,
                    "en_US": null,
                    "fr_FR": "Robe ample"
                },
                "r_continuity": [
                    {
                        "id": "r_seasonnal",
                        "labels": {
                            "en_GB": "Seasonnal",
                            "en_US": "Seasonnal",
                            "fr_FR": "Saisonnier"
                        }
                    }
                ],
                "r_custom_code": [
                    {
                        "id": "6102",
                        "labels": {
                            "en_GB": "6102-Women coats",
                            "en_US": "6102-Women coats",
                            "fr_FR": "6102-Manteaux femmes"
                        }
                    }
                ],
                "r_custom_name": [
                    {
                        "id": "6102_name",
                        "labels": {
                            "en_GB": "Women coats",
                            "en_US": "Women coats",
                            "fr_FR": "Manteaux femmes"
                        }
                    }
                ],
                "r_drying_type": [
                    {
                        "id": "notrumbledry",
                        "labels": {
                            "en_GB": "No trumble dry",
                            "en_US": "No trumble dry",
                            "fr_FR": "Pas de nettoyage à sec"
                        }
                    }
                ],
                "r_jacket_type": [
                    {
                        "id": "vest",
                        "labels": {
                            "en_GB": "Vest",
                            "en_US": "Vest",
                            "fr_FR": "Veste"
                        }
                    }
                ],
                "r_maintenance": {
                    "en_GB": "Wash with similar colors.",
                    "en_US": null,
                    "fr_FR": "Laver avec des couleurs similaires."
                },
                "reference_name": {
                    "en_GB": "Wide dress",
                    "en_US": null,
                    "fr_FR": "Robe ample"
                },
                "r_main_material": {
                    "en_GB": "Exterior : 100% Wool\nLining : 68% Acetate, 32% Polyester\nSleeve lining : 68% Acetate, 32% Polyester",
                    "en_US": null,
                    "fr_FR": "Coton\nDessus en dentelle"
                },
                "r_manufacturing_type": [
                    {
                        "id": "sewn",
                        "labels": {
                            "en_GB": "Sewn",
                            "en_US": "Sewn",
                            "fr_FR": "Cousu"
                        }
                    }
                ]
            },
            "documentType": {
                "@id": "/api/document-types/reference",
                "@type": "DocumentType",
                "default": true,
                "id": "reference"
            },
            "attributeSet": {
                "@id": "/api/attribute-sets/att_set_dress_skirt",
                "@type": "AttributeSet",
                "id": "att_set_dress_skirt"
            },
            "classifications": [
                {
                    "@type": "Classification",
                    "@id": "/api/classifications/classification_dresses5",
                    "catalogId": null,
                    "id": "classification_dresses5",
                    "legacyId": 1312
                }
            ],
            "documentLinks": [
                {
                    "@type": "Link",
                    "@id": "/api/links/dcdb75a1-fb87-4a23-ba24-f82716f220f1",
                    "linkType": {
                        "@type": "LinkType",
                        "@id": "/api/link-types/link_type_reference_reference_color",
                        "id": "link_type_reference_reference_color"
                    },
                    "origin": {
                        "@type": "Document",
                        "@id": "/api/documents/reference_dress",
                        "id": "reference_dress"
                    },
                    "target": {
                        "@type": "Document",
                        "@id": "/api/documents/color_reference_spring_dress",
                        "id": "color_reference_spring_dress"
                    },
                    "sequence": 1,
                    "id": "dcdb75a1-fb87-4a23-ba24-f82716f220f1",
                    "legacyId": 266
                }
            ],
            "assetLinks": [
                {
                    "@type": "Link",
                    "@id": "/api/links/b2b55f69-3054-4138-ba47-509e628f80c4",
                    "linkType": {
                        "@type": "LinkType",
                        "@id": "/api/link-types/article_images_media",
                        "id": "article_images_media"
                    },
                    "origin": {
                        "@type": "Document",
                        "@id": "/api/documents/reference_dress",
                        "id": "reference_dress"
                    },
                    "target": {
                        "@type": "Asset",
                        "@id": "/api/assets/78829c60-2123-4397-bd3b-front",
                        "id": "78829c60-2123-4397-bd3b-front"
                    },
                    "sequence": 1,
                    "id": "b2b55f69-3054-4138-ba47-509e628f80c4",
                    "legacyId": 288
                },
                {
                    "@type": "Link",
                    "@id": "/api/links/f6cba2da-9ab6-411d-8851-6f71d9fdab61",
                    "linkType": {
                        "@type": "LinkType",
                        "@id": "/api/link-types/link_type_croquis",
                        "id": "link_type_croquis"
                    },
                    "origin": {
                        "@type": "Document",
                        "@id": "/api/documents/reference_dress",
                        "id": "reference_dress"
                    },
                    "target": {
                        "@type": "Asset",
                        "@id": "/api/assets/78829c60-2123-4397-bd3b-front",
                        "id": "78829c60-2123-4397-bd3b-front"
                    },
                    "sequence": 1,
                    "id": "f6cba2da-9ab6-411d-8851-6f71d9fdab61",
                    "legacyId": 265
                }
            ],
            "workflows": [],
            "tags": [
                {
                    "@id": "/api/tags/all_documents_new_6130edc94b136",
                    "@type": "Tag",
                    "id": "all_documents_new_6130edc94b136"
                }
            ],
            "completenesses": {
                "completeness_characteristics_and_care": {
                    "en_GB": 0.6,
                    "en_US": 0.4,
                    "fr_FR": 0.6
                }
            },
            "variants": [],
            "mainAssetThumbnailUrl": "https://cdn.quable.com/education-developers/78829c60-2123-4397-bd3b-front/thumbnail/dress-reference-png.jpg",
            "dateCreated": "2021-09-06T16:03:03+00:00",
            "dateModified": "2023-07-25T12:38:50+00:00",
            "id": "reference_dress",
            "legacyId": 43
        },
        {
            "@type": "Document",
            "@id": "/api/documents/graphic_yellow_fabric",
            "active": true,
            "attributes": {
                "mat_origine": [
                    {
                        "id": "mat_synthetic",
                        "labels": {
                            "en_GB": "Synthetic",
                            "en_US": "Synthetic",
                            "fr_FR": "Synthétique"
                        }
                    }
                ],
                "material_name": {
                    "en_GB": "Graphic yellow fabric",
                    "en_US": null,
                    "fr_FR": null
                },
                "mat_color_name": [
                    {
                        "id": "yellow",
                        "labels": {
                            "en_GB": "Yellow",
                            "en_US": "Yellow",
                            "fr_FR": "Jaune"
                        }
                    }
                ],
                "mat_country_orig": [
                    {
                        "id": "mat_turkey",
                        "labels": {
                            "en_GB": "Turkey",
                            "en_US": "Turkey",
                            "fr_FR": "Turquie"
                        }
                    }
                ],
                "mat_color_description": {
                    "en_GB": "Canary yellow",
                    "en_US": null,
                    "fr_FR": null
                },
                "mat_composition_material_1": [
                    {
                        "id": "cotton",
                        "labels": {
                            "en_GB": "Cotton",
                            "en_US": "Cotton",
                            "fr_FR": "Coton"
                        }
                    }
                ],
                "mat_composition_material_2": [
                    {
                        "id": "wool2",
                        "labels": {
                            "en_GB": "Wool",
                            "en_US": "Wool",
                            "fr_FR": "Laine"
                        }
                    }
                ],
                "mat_perc_composition_material_1": 70,
                "mat_perc_composition_material_2": 30
            },
            "documentType": {
                "@id": "/api/document-types/material",
                "@type": "DocumentType",
                "default": false,
                "id": "material"
            },
            "attributeSet": null,
            "classifications": [
                {
                    "@type": "Classification",
                    "@id": "/api/classifications/classification_materials",
                    "catalogId": null,
                    "id": "classification_materials",
                    "legacyId": 129
                }
            ],
            "documentLinks": [],
            "assetLinks": [
                {
                    "@type": "Link",
                    "@id": "/api/links/9606ed7a-c22a-4b73-9739-5e026926511d",
                    "linkType": {
                        "@type": "LinkType",
                        "@id": "/api/link-types/article_images_media",
                        "id": "article_images_media"
                    },
                    "origin": {
                        "@type": "Document",
                        "@id": "/api/documents/graphic_yellow_fabric",
                        "id": "graphic_yellow_fabric"
                    },
                    "target": {
                        "@type": "Asset",
                        "@id": "/api/assets/cb9cb871-5974-4fb5-a580-front",
                        "id": "cb9cb871-5974-4fb5-a580-front"
                    },
                    "sequence": 1,
                    "id": "9606ed7a-c22a-4b73-9739-5e026926511d",
                    "legacyId": 212
                }
            ],
            "workflows": [],
            "tags": [
                {
                    "@id": "/api/tags/all_documents_new_6130edc940e9b",
                    "@type": "Tag",
                    "id": "all_documents_new_6130edc940e9b"
                }
            ],
            "completenesses": [],
            "variants": [],
            "mainAssetThumbnailUrl": "https://cdn.quable.com/education-developers/cb9cb871-5974-4fb5-a580-front/thumbnail/yellow-fabric-png.jpg",
            "dateCreated": "2021-08-09T15:43:51+00:00",
            "dateModified": "2021-12-02T10:52:57+00:00",
            "id": "graphic_yellow_fabric",
            "legacyId": 15
        },
        {
            "@type": "Document",
            "@id": "/api/documents/pink_fabric",
            "active": true,
            "attributes": {
                "mat_origine": [
                    {
                        "id": "mat_vegetal",
                        "labels": {
                            "en_GB": "Vegetal",
                            "en_US": "Vegetal",
                            "fr_FR": "Végétale"
                        }
                    }
                ],
                "material_name": {
                    "en_GB": "Pink fabric",
                    "en_US": null,
                    "fr_FR": "Tissu rose"
                },
                "mat_color_name": [
                    {
                        "id": "pink",
                        "labels": {
                            "en_GB": "Pink",
                            "en_US": null,
                            "fr_FR": "Rose"
                        }
                    }
                ],
                "mat_country_orig": [
                    {
                        "id": "mat_india",
                        "labels": {
                            "en_GB": "India",
                            "en_US": "India",
                            "fr_FR": "Inde"
                        }
                    }
                ],
                "mat_color_description": {
                    "en_GB": "Pink",
                    "en_US": null,
                    "fr_FR": "Rose"
                },
                "mat_composition_material_1": [
                    {
                        "id": "cotton",
                        "labels": {
                            "en_GB": "Cotton",
                            "en_US": "Cotton",
                            "fr_FR": "Coton"
                        }
                    }
                ],
                "mat_composition_material_2": [
                    {
                        "id": "wool2",
                        "labels": {
                            "en_GB": "Wool",
                            "en_US": "Wool",
                            "fr_FR": "Laine"
                        }
                    }
                ],
                "mat_perc_composition_material_1": 70,
                "mat_perc_composition_material_2": 30
            },
            "documentType": {
                "@id": "/api/document-types/material",
                "@type": "DocumentType",
                "default": false,
                "id": "material"
            },
            "attributeSet": null,
            "classifications": [
                {
                    "@type": "Classification",
                    "@id": "/api/classifications/classification_materials",
                    "catalogId": null,
                    "id": "classification_materials",
                    "legacyId": 129
                }
            ],
            "documentLinks": [
                {
                    "@type": "Link",
                    "@id": "/api/links/d8a82027-9edc-4a18-ba6e-c7b527d47670",
                    "linkType": {
                        "@type": "LinkType",
                        "@id": "/api/link-types/link_type_color_reference___material",
                        "id": "link_type_color_reference___material"
                    },
                    "origin": {
                        "@type": "Document",
                        "@id": "/api/documents/color_reference_smooth_pink_shirt",
                        "id": "color_reference_smooth_pink_shirt"
                    },
                    "target": {
                        "@type": "Document",
                        "@id": "/api/documents/pink_fabric",
                        "id": "pink_fabric"
                    },
                    "sequence": 1,
                    "id": "d8a82027-9edc-4a18-ba6e-c7b527d47670",
                    "legacyId": 191
                }
            ],
            "assetLinks": [
                {
                    "@type": "Link",
                    "@id": "/api/links/8c23f1e3-416e-4057-87f9-55ae484dde55",
                    "linkType": {
                        "@type": "LinkType",
                        "@id": "/api/link-types/article_images_media",
                        "id": "article_images_media"
                    },
                    "origin": {
                        "@type": "Document",
                        "@id": "/api/documents/pink_fabric",
                        "id": "pink_fabric"
                    },
                    "target": {
                        "@type": "Asset",
                        "@id": "/api/assets/621f1303-8d6b-4b84-9531-front",
                        "id": "621f1303-8d6b-4b84-9531-front"
                    },
                    "sequence": 1,
                    "id": "8c23f1e3-416e-4057-87f9-55ae484dde55",
                    "legacyId": 185
                }
            ],
            "workflows": [],
            "tags": [
                {
                    "@id": "/api/tags/all_documents_new_6130edc940e9b",
                    "@type": "Tag",
                    "id": "all_documents_new_6130edc940e9b"
                }
            ],
            "completenesses": [],
            "variants": [],
            "mainAssetThumbnailUrl": "https://cdn.quable.com/education-developers/621f1303-8d6b-4b84-9531-front/thumbnail/pink-fabric-png.jpg",
            "dateCreated": "2021-08-25T08:30:16+00:00",
            "dateModified": "2021-09-07T13:58:28+00:00",
            "id": "pink_fabric",
            "legacyId": 28
        },
        {
            "@type": "Document",
            "@id": "/api/documents/green_fabric",
            "active": true,
            "attributes": {
                "mat_origine": [
                    {
                        "id": "mat_vegetal",
                        "labels": {
                            "en_GB": "Vegetal",
                            "en_US": "Vegetal",
                            "fr_FR": "Végétale"
                        }
                    }
                ],
                "material_name": {
                    "en_GB": "Green fabric",
                    "en_US": null,
                    "fr_FR": "Tissu vert"
                },
                "mat_color_name": [
                    {
                        "id": "green",
                        "labels": {
                            "en_GB": "Green",
                            "en_US": "Green",
                            "fr_FR": "Vert"
                        }
                    }
                ],
                "mat_country_orig": [
                    {
                        "id": "mat_india",
                        "labels": {
                            "en_GB": "India",
                            "en_US": "India",
                            "fr_FR": "Inde"
                        }
                    }
                ],
                "mat_color_description": {
                    "en_GB": "Dark Green",
                    "en_US": null,
                    "fr_FR": "Vert foncé"
                },
                "mat_composition_material_1": [
                    {
                        "id": "cotton",
                        "labels": {
                            "en_GB": "Cotton",
                            "en_US": "Cotton",
                            "fr_FR": "Coton"
                        }
                    }
                ],
                "mat_composition_material_2": [
                    {
                        "id": "wool2",
                        "labels": {
                            "en_GB": "Wool",
                            "en_US": "Wool",
                            "fr_FR": "Laine"
                        }
                    }
                ],
                "mat_perc_composition_material_1": 70,
                "mat_perc_composition_material_2": 30
            },
            "documentType": {
                "@id": "/api/document-types/material",
                "@type": "DocumentType",
                "default": false,
                "id": "material"
            },
            "attributeSet": null,
            "classifications": [
                {
                    "@type": "Classification",
                    "@id": "/api/classifications/classification_materials",
                    "catalogId": null,
                    "id": "classification_materials",
                    "legacyId": 129
                }
            ],
            "documentLinks": [
                {
                    "@type": "Link",
                    "@id": "/api/links/78202a0f-78c6-448c-9e3d-c5b1b556f4cf",
                    "linkType": {
                        "@type": "LinkType",
                        "@id": "/api/link-types/link_type_color_reference___material",
                        "id": "link_type_color_reference___material"
                    },
                    "origin": {
                        "@type": "Document",
                        "@id": "/api/documents/color_reference_smooth_green_shirt",
                        "id": "color_reference_smooth_green_shirt"
                    },
                    "target": {
                        "@type": "Document",
                        "@id": "/api/documents/green_fabric",
                        "id": "green_fabric"
                    },
                    "sequence": 1,
                    "id": "78202a0f-78c6-448c-9e3d-c5b1b556f4cf",
                    "legacyId": 190
                }
            ],
            "assetLinks": [
                {
                    "@type": "Link",
                    "@id": "/api/links/ffd74436-2b3b-4a7b-ae3d-ed39596ba7da",
                    "linkType": {
                        "@type": "LinkType",
                        "@id": "/api/link-types/article_images_media",
                        "id": "article_images_media"
                    },
                    "origin": {
                        "@type": "Document",
                        "@id": "/api/documents/green_fabric",
                        "id": "green_fabric"
                    },
                    "target": {
                        "@type": "Asset",
                        "@id": "/api/assets/a48ba9d8-49d4-4e80-b781-front",
                        "id": "a48ba9d8-49d4-4e80-b781-front"
                    },
                    "sequence": 1,
                    "id": "ffd74436-2b3b-4a7b-ae3d-ed39596ba7da",
                    "legacyId": 187
                }
            ],
            "workflows": [],
            "tags": [
                {
                    "@id": "/api/tags/all_documents_new_6130edc940e9b",
                    "@type": "Tag",
                    "id": "all_documents_new_6130edc940e9b"
                }
            ],
            "completenesses": [],
            "variants": [],
            "mainAssetThumbnailUrl": "https://cdn.quable.com/education-developers/a48ba9d8-49d4-4e80-b781-front/thumbnail/green-fabric-png.jpg",
            "dateCreated": "2021-08-25T08:32:50+00:00",
            "dateModified": "2021-09-07T13:58:28+00:00",
            "id": "green_fabric",
            "legacyId": 29
        },
        {
            "@type": "Document",
            "@id": "/api/documents/look_working_girl",
            "active": true,
            "attributes": {
                "look_name": {
                    "en_GB": "Working girl",
                    "en_US": null,
                    "fr_FR": "Working girl"
                },
                "look_gender": [
                    {
                        "id": "cr_woman",
                        "labels": {
                            "en_GB": "Woman",
                            "en_US": "Woman",
                            "fr_FR": "Femme"
                        }
                    }
                ],
                "look_lookcode": "WG-07585",
                "look_worn_size": [
                    {
                        "id": "look_38",
                        "labels": {
                            "en_GB": "38",
                            "en_US": "38",
                            "fr_FR": "38"
                        }
                    }
                ],
                "look_collection": {
                    "en_GB": "Business",
                    "en_US": null,
                    "fr_FR": "Business"
                },
                "look_model_name": {
                    "en_GB": "Violet Mimadson",
                    "en_US": null,
                    "fr_FR": "Violet Mimadson"
                },
                "look_seasoncode": "AW2021",
                "look_seasonname": [
                    {
                        "id": "look_aw",
                        "labels": {
                            "en_GB": "Automn - Winter",
                            "en_US": "Automn - Winter",
                            "fr_FR": "Automne - Hiver"
                        }
                    }
                ],
                "look_seasonyear": 2021,
                "look_look_number": 10659,
                "look_collectioncode": "023-BUS",
                "look_LookDescription": {
                    "en_GB": "Business woman style with high heels and pouch",
                    "en_US": null,
                    "fr_FR": "Style de business woman accompagné de hauts talons et d’une pochette"
                },
                "look_model_height_cm": 179,
                "look_fashion_show_order": 10
            },
            "documentType": {
                "@id": "/api/document-types/look",
                "@type": "DocumentType",
                "default": false,
                "id": "look"
            },
            "attributeSet": {
                "@id": "/api/attribute-sets/attr_set_clothes_look",
                "@type": "AttributeSet",
                "id": "attr_set_clothes_look"
            },
            "classifications": [
                {
                    "@type": "Classification",
                    "@id": "/api/classifications/classification_lookw1",
                    "catalogId": null,
                    "id": "classification_lookw1",
                    "legacyId": 1358
                }
            ],
            "documentLinks": [
                {
                    "@type": "Link",
                    "@id": "/api/links/824fd4eb-21df-45cb-9711-f84fc2260bbd",
                    "linkType": {
                        "@type": "LinkType",
                        "@id": "/api/link-types/link_type_look_color_reference",
                        "id": "link_type_look_color_reference"
                    },
                    "origin": {
                        "@type": "Document",
                        "@id": "/api/documents/look_working_girl",
                        "id": "look_working_girl"
                    },
                    "target": {
                        "@type": "Document",
                        "@id": "/api/documents/color_reference_zoe_burgundy_bucket_bag",
                        "id": "color_reference_zoe_burgundy_bucket_bag"
                    },
                    "sequence": 1,
                    "id": "824fd4eb-21df-45cb-9711-f84fc2260bbd",
                    "legacyId": 179
                }
            ],
            "assetLinks": [
                {
                    "@type": "Link",
                    "@id": "/api/links/a2cd58cc-96b1-4be7-a1eb-ae2eede1269c",
                    "linkType": {
                        "@type": "LinkType",
                        "@id": "/api/link-types/look_image_studio",
                        "id": "look_image_studio"
                    },
                    "origin": {
                        "@type": "Document",
                        "@id": "/api/documents/look_working_girl",
                        "id": "look_working_girl"
                    },
                    "target": {
                        "@type": "Asset",
                        "@id": "/api/assets/f0cb526f-5457-4607-9842-front",
                        "id": "f0cb526f-5457-4607-9842-front"
                    },
                    "sequence": 1,
                    "id": "a2cd58cc-96b1-4be7-a1eb-ae2eede1269c",
                    "legacyId": 208
                },
                {
                    "@type": "Link",
                    "@id": "/api/links/f1027ae1-9666-4a86-8150-872a7f79c810",
                    "linkType": {
                        "@type": "LinkType",
                        "@id": "/api/link-types/look_image_studio",
                        "id": "look_image_studio"
                    },
                    "origin": {
                        "@type": "Document",
                        "@id": "/api/documents/look_working_girl",
                        "id": "look_working_girl"
                    },
                    "target": {
                        "@type": "Asset",
                        "@id": "/api/assets/d33ce592-3076-40ae-9d03-front",
                        "id": "d33ce592-3076-40ae-9d03-front"
                    },
                    "sequence": 2,
                    "id": "f1027ae1-9666-4a86-8150-872a7f79c810",
                    "legacyId": 209
                }
            ],
            "workflows": [],
            "tags": [
                {
                    "@id": "/api/tags/look_medias_nok",
                    "@type": "Tag",
                    "id": "look_medias_nok"
                },
                {
                    "@id": "/api/tags/look_video_show_nok",
                    "@type": "Tag",
                    "id": "look_video_show_nok"
                }
            ],
            "completenesses": {
                "completeness_look": {
                    "en_GB": 0.82,
                    "en_US": 0.59,
                    "fr_FR": 0.82
                }
            },
            "variants": [],
            "mainAssetThumbnailUrl": "https://cdn.quable.com/education-developers/f0cb526f-5457-4607-9842-front/thumbnail/look-working-girl-front-png.jpg",
            "dateCreated": "2021-08-09T12:59:55+00:00",
            "dateModified": "2022-07-06T09:44:10+00:00",
            "id": "look_working_girl",
            "legacyId": 3
        },
        {
            "@type": "Document",
            "@id": "/api/documents/green-skirt",
            "active": true,
            "attributes": {
                "r_long_name": {
                    "en_GB": "Trendy green skirt",
                    "en_US": "Trendy green skirt",
                    "fr_FR": null
                },
                "reference_name": {
                    "en_GB": "Organic coton green skirt",
                    "en_US": "Organic coton green skirt",
                    "fr_FR": "Jupe verte en coton biologique"
                }
            },
            "documentType": {
                "@id": "/api/document-types/reference",
                "@type": "DocumentType",
                "default": true,
                "id": "reference"
            },
            "attributeSet": null,
            "classifications": [
                {
                    "@type": "Classification",
                    "@id": "/api/classifications/classification_ready_to_wearw5",
                    "catalogId": null,
                    "id": "classification_ready_to_wearw5",
                    "legacyId": 1302
                }
            ],
            "documentLinks": [],
            "assetLinks": [],
            "workflows": [],
            "tags": [
                {
                    "@id": "/api/tags/color_reference_description_nok",
                    "@type": "Tag",
                    "id": "color_reference_description_nok"
                }
            ],
            "completenesses": {
                "completeness_characteristics_and_care": {
                    "en_GB": 0,
                    "en_US": 0,
                    "fr_FR": 0
                }
            },
            "variants": [],
            "mainAssetThumbnailUrl": null,
            "dateCreated": "2023-09-18T13:54:23+00:00",
            "dateModified": "2023-09-18T14:08:30+00:00",
            "id": "green-skirt",
            "legacyId": 50
        },
        {
            "@type": "Document",
            "@id": "/api/documents/look_winter",
            "active": true,
            "attributes": {
                "look_name": {
                    "en_GB": "Winter look",
                    "en_US": null,
                    "fr_FR": "Look hiver"
                },
                "look_gender": [
                    {
                        "id": "cr_woman",
                        "labels": {
                            "en_GB": "Woman",
                            "en_US": "Woman",
                            "fr_FR": "Femme"
                        }
                    }
                ],
                "look_lookcode": "WG-07586",
                "look_worn_size": [
                    {
                        "id": "look_38",
                        "labels": {
                            "en_GB": "38",
                            "en_US": "38",
                            "fr_FR": "38"
                        }
                    }
                ],
                "look_collection": {
                    "en_GB": "Classy",
                    "en_US": null,
                    "fr_FR": "Classe"
                },
                "look_model_name": {
                    "en_GB": "Renee Williams",
                    "en_US": null,
                    "fr_FR": "Renee Williams"
                },
                "look_seasoncode": "AW2021",
                "look_seasonname": [
                    {
                        "id": "look_aw",
                        "labels": {
                            "en_GB": "Automn - Winter",
                            "en_US": "Automn - Winter",
                            "fr_FR": "Automne - Hiver"
                        }
                    }
                ],
                "look_seasonyear": 2021,
                "look_composition": [
                    {
                        "id": "l_bag",
                        "labels": {
                            "en_GB": "Bag",
                            "en_US": "Bag",
                            "fr_FR": "Sac"
                        }
                    },
                    {
                        "id": "l_jacket",
                        "labels": {
                            "en_GB": "Jacket",
                            "en_US": "Jacket",
                            "fr_FR": "Veste"
                        }
                    },
                    {
                        "id": "l_trousers",
                        "labels": {
                            "en_GB": "Trousers",
                            "en_US": "Trousers",
                            "fr_FR": "Pantalon"
                        }
                    },
                    {
                        "id": "l_shoes",
                        "labels": {
                            "en_GB": "Shoes",
                            "en_US": "Shoes",
                            "fr_FR": "Chaussures"
                        }
                    }
                ],
                "look_look_number": 10659,
                "look_collectioncode": "026-BUS",
                "look_LookDescription": {
                    "en_GB": "Winter coat worn with high heels and pouch",
                    "en_US": null,
                    "fr_FR": "Manteau long d'hiver, porté avec des talons hauts et une pochette"
                },
                "look_model_height_cm": 179,
                "look_fashion_show_order": 11
            },
            "documentType": {
                "@id": "/api/document-types/look",
                "@type": "DocumentType",
                "default": false,
                "id": "look"
            },
            "attributeSet": {
                "@id": "/api/attribute-sets/attr_set_clothes_look",
                "@type": "AttributeSet",
                "id": "attr_set_clothes_look"
            },
            "classifications": [
                {
                    "@type": "Classification",
                    "@id": "/api/classifications/classification_lookw4",
                    "catalogId": null,
                    "id": "classification_lookw4",
                    "legacyId": 1362
                }
            ],
            "documentLinks": [
                {
                    "@type": "Link",
                    "@id": "/api/links/16a0d83f-2a96-4aa4-acf0-28196b78e04e",
                    "linkType": {
                        "@type": "LinkType",
                        "@id": "/api/link-types/link_type_look_color_reference",
                        "id": "link_type_look_color_reference"
                    },
                    "origin": {
                        "@type": "Document",
                        "@id": "/api/documents/look_winter",
                        "id": "look_winter"
                    },
                    "target": {
                        "@type": "Document",
                        "@id": "/api/documents/color_reference_smooth_green_shirt",
                        "id": "color_reference_smooth_green_shirt"
                    },
                    "sequence": 1,
                    "id": "16a0d83f-2a96-4aa4-acf0-28196b78e04e",
                    "legacyId": 300
                }
            ],
            "assetLinks": [
                {
                    "@type": "Link",
                    "@id": "/api/links/551c4774-4d90-4101-84fd-9678c01b5c43",
                    "linkType": {
                        "@type": "LinkType",
                        "@id": "/api/link-types/article_images_media",
                        "id": "article_images_media"
                    },
                    "origin": {
                        "@type": "Document",
                        "@id": "/api/documents/look_winter",
                        "id": "look_winter"
                    },
                    "target": {
                        "@type": "Asset",
                        "@id": "/api/assets/693d9020-67e1-4183-af54-front",
                        "id": "693d9020-67e1-4183-af54-front"
                    },
                    "sequence": 1,
                    "id": "551c4774-4d90-4101-84fd-9678c01b5c43",
                    "legacyId": 234
                },
                {
                    "@type": "Link",
                    "@id": "/api/links/c1fc13d8-de8e-47f8-9c1d-61513f097572",
                    "linkType": {
                        "@type": "LinkType",
                        "@id": "/api/link-types/link_type_video_show",
                        "id": "link_type_video_show"
                    },
                    "origin": {
                        "@type": "Document",
                        "@id": "/api/documents/look_winter",
                        "id": "look_winter"
                    },
                    "target": {
                        "@type": "Asset",
                        "@id": "/api/assets/e9dd6b3e-9105-427e-a9ec-front",
                        "id": "e9dd6b3e-9105-427e-a9ec-front"
                    },
                    "sequence": 1,
                    "id": "c1fc13d8-de8e-47f8-9c1d-61513f097572",
                    "legacyId": 233
                }
            ],
            "workflows": [],
            "tags": [
                {
                    "@id": "/api/tags/look_medias_ok",
                    "@type": "Tag",
                    "id": "look_medias_ok"
                },
                {
                    "@id": "/api/tags/look_video_show_ok",
                    "@type": "Tag",
                    "id": "look_video_show_ok"
                }
            ],
            "completenesses": {
                "completeness_look": {
                    "en_GB": 0.88,
                    "en_US": 0.65,
                    "fr_FR": 0.88
                }
            },
            "variants": [],
            "mainAssetThumbnailUrl": "https://cdn.quable.com/education-developers/693d9020-67e1-4183-af54-front/thumbnail/winter-look-png.jpg",
            "dateCreated": "2021-09-06T13:40:59+00:00",
            "dateModified": "2023-11-24T09:31:27+00:00",
            "id": "look_winter",
            "legacyId": 36
        },
        {
            "@type": "Document",
            "@id": "/api/documents/look_spring",
            "active": true,
            "attributes": {
                "look_name": {
                    "en_GB": "Spring",
                    "en_US": null,
                    "fr_FR": "Working girl"
                },
                "look_gender": [
                    {
                        "id": "cr_woman",
                        "labels": {
                            "en_GB": "Woman",
                            "en_US": "Woman",
                            "fr_FR": "Femme"
                        }
                    }
                ],
                "look_lookcode": "WG-07587",
                "look_worn_size": [
                    {
                        "id": "look_38",
                        "labels": {
                            "en_GB": "38",
                            "en_US": "38",
                            "fr_FR": "38"
                        }
                    }
                ],
                "look_collection": {
                    "en_GB": "Chill",
                    "en_US": null,
                    "fr_FR": "Détente"
                },
                "look_model_name": {
                    "en_GB": "Wanda Smith",
                    "en_US": null,
                    "fr_FR": "Wanda Smith"
                },
                "look_seasoncode": "SS2021",
                "look_seasonname": [
                    {
                        "id": "look_ss",
                        "labels": {
                            "en_GB": "Spring - Summer",
                            "en_US": "Spring - Summer",
                            "fr_FR": "Printemps - Été"
                        }
                    }
                ],
                "look_seasonyear": 2021,
                "look_composition": [
                    {
                        "id": "l_dress",
                        "labels": {
                            "en_GB": "Dress",
                            "en_US": "Dress",
                            "fr_FR": "Robe"
                        }
                    },
                    {
                        "id": "l_accessories",
                        "labels": {
                            "en_GB": "Accessories",
                            "en_US": "Accessories",
                            "fr_FR": "Accessoires"
                        }
                    }
                ],
                "look_look_number": 10651,
                "look_collectioncode": "023-CH",
                "look_LookDescription": {
                    "en_GB": "Large and short dress plus a hooked hat",
                    "en_US": null,
                    "fr_FR": "Robe courte et ample accompagnée d’un chapeau crocheté"
                },
                "look_model_height_cm": 179,
                "look_fashion_show_order": 12
            },
            "documentType": {
                "@id": "/api/document-types/look",
                "@type": "DocumentType",
                "default": false,
                "id": "look"
            },
            "attributeSet": {
                "@id": "/api/attribute-sets/attr_set_clothes_look",
                "@type": "AttributeSet",
                "id": "attr_set_clothes_look"
            },
            "classifications": [
                {
                    "@type": "Classification",
                    "@id": "/api/classifications/classification_lookw5",
                    "catalogId": null,
                    "id": "classification_lookw5",
                    "legacyId": 1363
                }
            ],
            "documentLinks": [
                {
                    "@type": "Link",
                    "@id": "/api/links/ae0f440d-241f-461d-84ae-670eead96114",
                    "linkType": {
                        "@type": "LinkType",
                        "@id": "/api/link-types/link_type_look_color_reference",
                        "id": "link_type_look_color_reference"
                    },
                    "origin": {
                        "@type": "Document",
                        "@id": "/api/documents/look_spring",
                        "id": "look_spring"
                    },
                    "target": {
                        "@type": "Document",
                        "@id": "/api/documents/color_reference_spring_dress",
                        "id": "color_reference_spring_dress"
                    },
                    "sequence": 1,
                    "id": "ae0f440d-241f-461d-84ae-670eead96114",
                    "legacyId": 247
                }
            ],
            "assetLinks": [
                {
                    "@type": "Link",
                    "@id": "/api/links/a984c7f1-228c-4aab-883f-56ad878e67e8",
                    "linkType": {
                        "@type": "LinkType",
                        "@id": "/api/link-types/article_images_media",
                        "id": "article_images_media"
                    },
                    "origin": {
                        "@type": "Document",
                        "@id": "/api/documents/look_spring",
                        "id": "look_spring"
                    },
                    "target": {
                        "@type": "Asset",
                        "@id": "/api/assets/e5fcb8e7-2108-4060-a93a-front",
                        "id": "e5fcb8e7-2108-4060-a93a-front"
                    },
                    "sequence": 1,
                    "id": "a984c7f1-228c-4aab-883f-56ad878e67e8",
                    "legacyId": 246
                },
                {
                    "@type": "Link",
                    "@id": "/api/links/98dc2bd9-f9c9-4d05-91c4-91d3b49fb4af",
                    "linkType": {
                        "@type": "LinkType",
                        "@id": "/api/link-types/link_type_video_show",
                        "id": "link_type_video_show"
                    },
                    "origin": {
                        "@type": "Document",
                        "@id": "/api/documents/look_spring",
                        "id": "look_spring"
                    },
                    "target": {
                        "@type": "Asset",
                        "@id": "/api/assets/8129a3e9-5e4e-4df2-b85b-front",
                        "id": "8129a3e9-5e4e-4df2-b85b-front"
                    },
                    "sequence": 1,
                    "id": "98dc2bd9-f9c9-4d05-91c4-91d3b49fb4af",
                    "legacyId": 245
                }
            ],
            "workflows": [],
            "tags": [
                {
                    "@id": "/api/tags/look_medias_ok",
                    "@type": "Tag",
                    "id": "look_medias_ok"
                },
                {
                    "@id": "/api/tags/look_video_show_ok",
                    "@type": "Tag",
                    "id": "look_video_show_ok"
                }
            ],
            "completenesses": {
                "completeness_look": {
                    "en_GB": 0.88,
                    "en_US": 0.65,
                    "fr_FR": 0.88
                }
            },
            "variants": [],
            "mainAssetThumbnailUrl": "https://cdn.quable.com/education-developers/e5fcb8e7-2108-4060-a93a-front/thumbnail/spring-look-png.jpg",
            "dateCreated": "2021-09-06T13:41:27+00:00",
            "dateModified": "2021-09-13T09:02:41+00:00",
            "id": "look_spring",
            "legacyId": 37
        }
    ],
    "hydra:totalItems": 35,
    "hydra:view": {
        "@id": "/api/documents?catalog.id=eco&page=1",
        "@type": "hydra:PartialCollectionView",
        "hydra:first": "/api/documents?catalog.id=eco&page=1",
        "hydra:last": "/api/documents?catalog.id=eco&page=2",
        "hydra:next": "/api/documents?catalog.id=eco&page=2"
    },
    "hydra:search": {
        "@type": "hydra:IriTemplate",
        "hydra:template": "/api/documents{?attributeSet.id,attributeSet.id[],id,id[],order[completenesses.completeness_example_id],documentType.id,documentType.id[],documentLinks.link_type_id_example.origin.id,documentLinks.link_type_id_example.origin.id[],documentLinks.link_type_id_example.target.id,documentLinks.link_type_id_example.target.id[],documentLinks.link_type_id_example.attributes.attribute_id_example,documentLinks.link_type_id_example.attributes.attribute_id_example[],skipDocumentLinks,skipVariantLinks,skipAssetLinks,tags.id,tags.id[],workflowSteps.id,workflowSteps.id[],search,attributes.attribute_example_id,attributes.attribute_example_id[],attributes.attribute_example_id[equals],attributes.attribute_example_id[contains],catalogs.id,catalogs.id[],classifications.id,classifications.id[],order[id],order[name],order[dateCreated],order[dateModified],dateCreated[before],dateCreated[strictly_before],dateCreated[after],dateCreated[strictly_after],dateModified[before],dateModified[strictly_before],dateModified[after],dateModified[strictly_after],name,name[],active,active[]}",
        "hydra:variableRepresentation": "BasicRepresentation",
        "hydra:mapping": [
            {
                "@type": "IriTemplateMapping",
                "variable": "attributeSet.id",
                "property": "attributeSet.id",
                "required": false
            },
            {
                "@type": "IriTemplateMapping",
                "variable": "attributeSet.id[]",
                "property": "attributeSet.id",
                "required": false
            },
            {
                "@type": "IriTemplateMapping",
                "variable": "id",
                "property": "id",
                "required": false
            },
            {
                "@type": "IriTemplateMapping",
                "variable": "id[]",
                "property": "id",
                "required": false
            },
            {
                "@type": "IriTemplateMapping",
                "variable": "order[completenesses.completeness_example_id]",
                "property": "completenesses",
                "required": false
            },
            {
                "@type": "IriTemplateMapping",
                "variable": "documentType.id",
                "property": "documentType.id",
                "required": false
            },
            {
                "@type": "IriTemplateMapping",
                "variable": "documentType.id[]",
                "property": "documentType.id",
                "required": false
            },
            {
                "@type": "IriTemplateMapping",
                "variable": "documentLinks.link_type_id_example.origin.id",
                "property": "documentOrigin.id",
                "required": false
            },
            {
                "@type": "IriTemplateMapping",
                "variable": "documentLinks.link_type_id_example.origin.id[]",
                "property": "documentOrigin.id",
                "required": false
            },
            {
                "@type": "IriTemplateMapping",
                "variable": "documentLinks.link_type_id_example.target.id",
                "property": "documentTarget.id",
                "required": false
            },
            {
                "@type": "IriTemplateMapping",
                "variable": "documentLinks.link_type_id_example.target.id[]",
                "property": "documentTarget.id",
                "required": false
            },
            {
                "@type": "IriTemplateMapping",
                "variable": "documentLinks.link_type_id_example.attributes.attribute_id_example",
                "property": "attribute_value_example",
                "required": false
            },
            {
                "@type": "IriTemplateMapping",
                "variable": "documentLinks.link_type_id_example.attributes.attribute_id_example[]",
                "property": "attribute_value_example",
                "required": false
            },
            {
                "@type": "IriTemplateMapping",
                "variable": "skipDocumentLinks",
                "property": "documentLinks",
                "required": false
            },
            {
                "@type": "IriTemplateMapping",
                "variable": "skipVariantLinks",
                "property": "variants",
                "required": false
            },
            {
                "@type": "IriTemplateMapping",
                "variable": "skipAssetLinks",
                "property": "assetLinks",
                "required": false
            },
            {
                "@type": "IriTemplateMapping",
                "variable": "tags.id",
                "property": "tags.id",
                "required": false
            },
            {
                "@type": "IriTemplateMapping",
                "variable": "tags.id[]",
                "property": "tags.id",
                "required": false
            },
            {
                "@type": "IriTemplateMapping",
                "variable": "workflowSteps.id",
                "property": "workflowSteps.id",
                "required": false
            },
            {
                "@type": "IriTemplateMapping",
                "variable": "workflowSteps.id[]",
                "property": "workflowSteps.id",
                "required": false
            },
            {
                "@type": "IriTemplateMapping",
                "variable": "search",
                "property": "search",
                "required": false
            },
            {
                "@type": "IriTemplateMapping",
                "variable": "attributes.attribute_example_id",
                "property": "attributes.attribute_example_id",
                "required": false
            },
            {
                "@type": "IriTemplateMapping",
                "variable": "attributes.attribute_example_id[]",
                "property": "attributes.attribute_example_id",
                "required": false
            },
            {
                "@type": "IriTemplateMapping",
                "variable": "attributes.attribute_example_id[equals]",
                "property": "attributes.attribute_example_id",
                "required": false
            },
            {
                "@type": "IriTemplateMapping",
                "variable": "attributes.attribute_example_id[contains]",
                "property": "attributes.attribute_example_id",
                "required": false
            },
            {
                "@type": "IriTemplateMapping",
                "variable": "catalogs.id",
                "property": "catalogs.id",
                "required": false
            },
            {
                "@type": "IriTemplateMapping",
                "variable": "catalogs.id[]",
                "property": "catalogs.id",
                "required": false
            },
            {
                "@type": "IriTemplateMapping",
                "variable": "classifications.id",
                "property": "classifications.id",
                "required": false
            },
            {
                "@type": "IriTemplateMapping",
                "variable": "classifications.id[]",
                "property": "classifications.id",
                "required": false
            },
            {
                "@type": "IriTemplateMapping",
                "variable": "order[id]",
                "property": "id",
                "required": false
            },
            {
                "@type": "IriTemplateMapping",
                "variable": "order[name]",
                "property": "name",
                "required": false
            },
            {
                "@type": "IriTemplateMapping",
                "variable": "order[dateCreated]",
                "property": "dateCreated",
                "required": false
            },
            {
                "@type": "IriTemplateMapping",
                "variable": "order[dateModified]",
                "property": "dateModified",
                "required": false
            },
            {
                "@type": "IriTemplateMapping",
                "variable": "dateCreated[before]",
                "property": "dateCreated",
                "required": false
            },
            {
                "@type": "IriTemplateMapping",
                "variable": "dateCreated[strictly_before]",
                "property": "dateCreated",
                "required": false
            },
            {
                "@type": "IriTemplateMapping",
                "variable": "dateCreated[after]",
                "property": "dateCreated",
                "required": false
            },
            {
                "@type": "IriTemplateMapping",
                "variable": "dateCreated[strictly_after]",
                "property": "dateCreated",
                "required": false
            },
            {
                "@type": "IriTemplateMapping",
                "variable": "dateModified[before]",
                "property": "dateModified",
                "required": false
            },
            {
                "@type": "IriTemplateMapping",
                "variable": "dateModified[strictly_before]",
                "property": "dateModified",
                "required": false
            },
            {
                "@type": "IriTemplateMapping",
                "variable": "dateModified[after]",
                "property": "dateModified",
                "required": false
            },
            {
                "@type": "IriTemplateMapping",
                "variable": "dateModified[strictly_after]",
                "property": "dateModified",
                "required": false
            },
            {
                "@type": "IriTemplateMapping",
                "variable": "name",
                "property": "name",
                "required": false
            },
            {
                "@type": "IriTemplateMapping",
                "variable": "name[]",
                "property": "name",
                "required": false
            },
            {
                "@type": "IriTemplateMapping",
                "variable": "active",
                "property": "active",
                "required": false
            },
            {
                "@type": "IriTemplateMapping",
                "variable": "active[]",
                "property": "active",
                "required": false
            }
        ]
    }
}

# Step 3: Export assets linked to the document

Two different methods are possible. The choice will depend on the previous answer.
In each returned hydra:member element (which is, for each document), the assetLinks collection provides the list of all the assets linked to this document.
The asset identifier is indicated in assetsLinks.target.id.

assetsLinks.target.@id is a shortcut indicating the API URL of this asset and is perfectly valid.

So from this point you have two options:

  • retrieve assets one by one
  • retrieve multiple assets at the time using their IDs in the request's path

# Retrieve a single asset

curl
curl --location --globoff 'https://education-developers.quable.com/api/assets/{{assetId}}' \
--header 'Authorization: Bearer 5245475D63CDE311078D228658615B6F95C744C6'

Reponse:

{"@context":{"@vocab":"https://education-developers.quable.com/api/docs.jsonld#","hydra":"http://www.w3.org/ns/hydra/core#","name":"AssetOutput/name","isActive":"AssetOutput/isActive","attributes":"AssetOutput/attributes","metadata":"AssetOutput/metadata","url":"AssetOutput/url","originalFilename":"AssetOutput/originalFilename","thumbnailUrl":"AssetOutput/thumbnailUrl","previewUrl":"AssetOutput/previewUrl","classifications":"AssetOutput/classifications","documentLinks":"AssetOutput/documentLinks","variantLinks":"AssetOutput/variantLinks","dateCreated":"AssetOutput/dateCreated","dateModified":"AssetOutput/dateModified","thumbnails":"AssetOutput/thumbnails","legacyId":"AssetOutput/legacyId","active":"AssetOutput/active"},"@type":"Asset","@id":"/api/assets/ed6b6a6c-7f0d-4269-8ebf-front","name":"Check material.png","active":true,"attributes":[],"metadata":{"width":"342","detail":{"Filter":"Adaptive","RedTRC":"(Binary data 16 bytes, use -b option to extract)","BlueTRC":"(Binary data 16 bytes, use -b option to extract)","BitDepth":8,"CMMFlags":"Not Embedded, Independent","FileSize":"201 kB","FileType":"PNG","GreenTRC":"(Binary data 16 bytes, use -b option to extract)","MIMEType":"image/png","ColorType":"RGB with Alpha","ImageSize":"342x310","Interlace":"Noninterlaced","ProfileID":"e3bfc2b8128a86339438348ce80bad68","ImageWidth":342,"Megapixels":0.106,"XMPToolkit":"XMP Core 5.4.0","Compression":"Deflate/Inflate","DeviceModel":"","ImageHeight":310,"ProfileName":"ICC Profile","UserComment":"Screenshot","ProfileClass":"Display Device Profile","ExifByteOrder":"Big-endian (Motorola, MM)","ColorSpaceData":"RGB ","ExifImageWidth":342,"FileAccessDate":"2021:09:06 14:17:27+00:00","FileModifyDate":"2021:09:06 14:17:27+00:00","ProfileCMMType":"Apple Computer Inc.","ProfileCreator":"Apple Computer Inc.","ProfileVersion":"4.0.0","ExifImageHeight":310,"FilePermissions":"rw-------","MediaWhitePoint":"0.95251 1 1.08606","PrimaryPlatform":"Apple Computer Inc.","ProfileDateTime":"2021:09:06 14:05:37","RedMatrixColumn":"0.407 0.20998 0.0034","RenderingIntent":"Perceptual","BlueMatrixColumn":"0.15839 0.06598 0.76381","DeviceAttributes":"Reflective, Glossy, Positive, Color","ProfileCopyright":"Copyright Apple Inc., 2021","FileTypeExtension":"png","GreenMatrixColumn":"0.39882 0.72403 0.05769","DeviceManufacturer":"Apple Computer Inc.","ProfileDescription":"Q24i-1L","ChromaticAdaptation":"1.04576 0.02182 -0.04945 0.02797 0.99156 -0.01674 -0.00919 0.01505 0.75375","FileInodeChangeDate":"2021:09:06 14:17:27+00:00","ProfileFileSignature":"acsp","ProfileConnectionSpace":"XYZ ","ConnectionSpaceIlluminant":"0.9642 1 0.82491"},"height":"310","file_name":"Check material.png","mime_type":"image/png","color_space":"sRGB","orientation":"landscape"},"url":"https://cdn.quable.com/education-developers/ed6b6a6c-7f0d-4269-8ebf-front/original/Check material.png","originalFilename":"Check material.png","thumbnailUrl":"https://cdn.quable.com/education-developers/ed6b6a6c-7f0d-4269-8ebf-front/thumbnail/check-material-png.jpg","previewUrl":"https://cdn.quable.com/education-developers/ed6b6a6c-7f0d-4269-8ebf-front/preview/check-material-png.jpg","classifications":[{"@context":{"@vocab":"https://education-developers.quable.com/api/docs.jsonld#","hydra":"http://www.w3.org/ns/hydra/core#","parentCode":"ClassificationOutput/parentCode","catalogId":"ClassificationOutput/catalogId","isActive":"ClassificationOutput/isActive","attributes":"ClassificationOutput/attributes","assetLinks":"ClassificationOutput/assetLinks","mainAssetUrl":"ClassificationOutput/mainAssetUrl","mainAssetThumbnailUrl":"ClassificationOutput/mainAssetThumbnailUrl","dateCreated":"ClassificationOutput/dateCreated","dateModified":"ClassificationOutput/dateModified","createdBy":"ClassificationOutput/createdBy","updatedBy":"ClassificationOutput/updatedBy","legacyId":"ClassificationOutput/legacyId","active":"ClassificationOutput/active"},"@type":"Classification","@id":"/api/classifications/dam_sort","catalogId":null,"id":"dam_sort","legacyId":3}],"documentLinks":[{"@context":{"@vocab":"https://education-developers.quable.com/api/docs.jsonld#","hydra":"http://www.w3.org/ns/hydra/core#","linkType":"LinkOutput/linkType","origin":"LinkOutput/origin","target":"LinkOutput/target","sequence":"LinkOutput/sequence","attributes":"LinkOutput/attributes","dateCreated":"LinkOutput/dateCreated","dateModified":"LinkOutput/dateModified","legacyId":"LinkOutput/legacyId"},"@type":"Link","@id":"/api/links/f3acee31-64ab-435c-a7cc-67f102eee4b2","linkType":{"@context":{"@vocab":"https://education-developers.quable.com/api/docs.jsonld#","hydra":"http://www.w3.org/ns/hydra/core#","name":"LinkTypeOutput/name","priority":"LinkTypeOutput/priority","maxItems":"LinkTypeOutput/maxItems","origin":"LinkTypeOutput/origin","target":"LinkTypeOutput/target","status":"LinkTypeOutput/status","dateCreated":"LinkTypeOutput/dateCreated","dateModified":"LinkTypeOutput/dateModified","maxCountLinksByOrigin":"LinkTypeOutput/maxCountLinksByOrigin"},"@type":"LinkType","@id":"/api/link-types/article_images_media","id":"article_images_media"},"origin":{"@context":{"@vocab":"https://education-developers.quable.com/api/docs.jsonld#","hydra":"http://www.w3.org/ns/hydra/core#"},"@type":"Document","@id":"/api/documents/material_check_wool","id":"material_check_wool"},"target":{"@context":{"@vocab":"https://education-developers.quable.com/api/docs.jsonld#","hydra":"http://www.w3.org/ns/hydra/core#"},"@type":"Asset","@id":"/api/assets/ed6b6a6c-7f0d-4269-8ebf-front","id":"ed6b6a6c-7f0d-4269-8ebf-front"},"sequence":1,"id":"f3acee31-64ab-435c-a7cc-67f102eee4b2","legacyId":235}],"variantLinks":[],"dateCreated":"2021-09-06T14:17:27+00:00","dateModified":"2023-10-19T14:40:52+00:00","thumbnails":{"preview":"https://cdn.quable.com/education-developers/ed6b6a6c-7f0d-4269-8ebf-front/preview/check-material-png.jpg","thumbnail":"https://cdn.quable.com/education-developers/ed6b6a6c-7f0d-4269-8ebf-front/thumbnail/check-material-png.jpg","1920x":"https://cdn.quable.com/education-developers/ed6b6a6c-7f0d-4269-8ebf-front/1920x/check-material-png.jpg"},"id":"ed6b6a6c-7f0d-4269-8ebf-front","legacyId":139}

# Retrieve multiple assets

To retrieve multiple assets at the same time with their IDs:

curl
curl --location --globoff 'https://education-developers.quable.com/api/assets?id[]=cb9cb871-5974-4fb5-a580-front&id[]=ed6b6a6c-7f0d-4269-8ebf-front' \
--header 'Authorization: Bearer {{yourbearerID}}'
{
    "@context": "/api/contexts/Asset",
    "@id": "/api/assets",
    "@type": "hydra:Collection",
    "hydra:member": [
        {
            "@type": "Asset",
            "@id": "/api/assets/cb9cb871-5974-4fb5-a580-front",
            "name": "Yellow fabric.png",
            "active": true,
            "attributes": [],
            "metadata": {
                "width": "342",
                "detail": {
                    "Filter": "Adaptive",
                    "RedTRC": "(Binary data 16 bytes, use -b option to extract)",
                    "BlueTRC": "(Binary data 16 bytes, use -b option to extract)",
                    "BitDepth": 8,
                    "CMMFlags": "Not Embedded, Independent",
                    "FileSize": "173 kB",
                    "FileType": "PNG",
                    "GreenTRC": "(Binary data 16 bytes, use -b option to extract)",
                    "MIMEType": "image/png",
                    "ColorType": "RGB with Alpha",
                    "ImageSize": "342x310",
                    "Interlace": "Noninterlaced",
                    "ProfileID": "b7ef7a3a68ae6f9bacd5e6292bf54daa",
                    "ImageWidth": 342,
                    "Megapixels": 0.106,
                    "XMPToolkit": "XMP Core 5.4.0",
                    "Compression": "Deflate/Inflate",
                    "DeviceModel": "",
                    "ImageHeight": 310,
                    "ProfileName": "ICC Profile",
                    "UserComment": "Screenshot",
                    "ProfileClass": "Display Device Profile",
                    "ExifByteOrder": "Big-endian (Motorola, MM)",
                    "ColorSpaceData": "RGB ",
                    "ExifImageWidth": 342,
                    "FileAccessDate": "2021:08:25 13:03:27+00:00",
                    "FileModifyDate": "2021:08:25 13:03:27+00:00",
                    "ProfileCMMType": "Apple Computer Inc.",
                    "ProfileCreator": "Apple Computer Inc.",
                    "ProfileVersion": "4.0.0",
                    "ExifImageHeight": 310,
                    "FilePermissions": "rw-------",
                    "MediaWhitePoint": "0.95251 1 1.08606",
                    "PrimaryPlatform": "Apple Computer Inc.",
                    "ProfileDateTime": "2021:08:23 09:19:42",
                    "RedMatrixColumn": "0.407 0.20998 0.0034",
                    "RenderingIntent": "Perceptual",
                    "BlueMatrixColumn": "0.15839 0.06598 0.76381",
                    "DeviceAttributes": "Reflective, Glossy, Positive, Color",
                    "ProfileCopyright": "Copyright Apple Inc., 2021",
                    "FileTypeExtension": "png",
                    "GreenMatrixColumn": "0.39882 0.72403 0.05769",
                    "DeviceManufacturer": "Apple Computer Inc.",
                    "ProfileDescription": "Q24i-1L",
                    "ChromaticAdaptation": "1.04576 0.02182 -0.04945 0.02797 0.99156 -0.01674 -0.00919 0.01505 0.75375",
                    "FileInodeChangeDate": "2021:08:25 13:03:27+00:00",
                    "ProfileFileSignature": "acsp",
                    "ProfileConnectionSpace": "XYZ ",
                    "ConnectionSpaceIlluminant": "0.9642 1 0.82491"
                },
                "height": "310",
                "file_name": "Yellow fabric.png",
                "mime_type": "image/png",
                "color_space": "sRGB",
                "orientation": "landscape"
            },
            "url": "https://cdn.quable.com/education-developers/cb9cb871-5974-4fb5-a580-front/original/Yellow fabric.png",
            "originalFilename": "Yellow fabric.png",
            "thumbnailUrl": "https://cdn.quable.com/education-developers/cb9cb871-5974-4fb5-a580-front/thumbnail/yellow-fabric-png.jpg",
            "previewUrl": "https://cdn.quable.com/education-developers/cb9cb871-5974-4fb5-a580-front/preview/yellow-fabric-png.jpg",
            "classifications": [
                {
                    "@type": "Classification",
                    "@id": "/api/classifications/dam_sort",
                    "catalogId": null,
                    "id": "dam_sort",
                    "legacyId": 3
                }
            ],
            "documentLinks": [
                {
                    "@type": "Link",
                    "@id": "/api/links/9606ed7a-c22a-4b73-9739-5e026926511d",
                    "linkType": {
                        "@type": "LinkType",
                        "@id": "/api/link-types/article_images_media",
                        "id": "article_images_media"
                    },
                    "origin": {
                        "@type": "Document",
                        "@id": "/api/documents/graphic_yellow_fabric",
                        "id": "graphic_yellow_fabric"
                    },
                    "target": {
                        "@type": "Asset",
                        "@id": "/api/assets/cb9cb871-5974-4fb5-a580-front",
                        "id": "cb9cb871-5974-4fb5-a580-front"
                    },
                    "sequence": 1,
                    "id": "9606ed7a-c22a-4b73-9739-5e026926511d",
                    "legacyId": 212
                },
                {
                    "@type": "Link",
                    "@id": "/api/links/351a7d24-b13a-47b6-9c50-2a2ba4ef23b4",
                    "linkType": {
                        "@type": "LinkType",
                        "@id": "/api/link-types/color_reference_back",
                        "id": "color_reference_back"
                    },
                    "origin": {
                        "@type": "Document",
                        "@id": "/api/documents/short-skirt-yellow",
                        "id": "short-skirt-yellow"
                    },
                    "target": {
                        "@type": "Asset",
                        "@id": "/api/assets/cb9cb871-5974-4fb5-a580-front",
                        "id": "cb9cb871-5974-4fb5-a580-front"
                    },
                    "sequence": 1,
                    "id": "351a7d24-b13a-47b6-9c50-2a2ba4ef23b4",
                    "legacyId": 293
                }
            ],
            "variantLinks": [],
            "dateCreated": "2021-08-25T13:03:28+00:00",
            "dateModified": "2023-10-19T14:40:52+00:00",
            "thumbnails": {
                "preview": "https://cdn.quable.com/education-developers/cb9cb871-5974-4fb5-a580-front/preview/yellow-fabric-png.jpg",
                "thumbnail": "https://cdn.quable.com/education-developers/cb9cb871-5974-4fb5-a580-front/thumbnail/yellow-fabric-png.jpg",
                "1920x": "https://cdn.quable.com/education-developers/cb9cb871-5974-4fb5-a580-front/1920x/yellow-fabric-png.jpg"
            },
            "id": "cb9cb871-5974-4fb5-a580-front",
            "legacyId": 126
        },
        {
            "@type": "Asset",
            "@id": "/api/assets/ed6b6a6c-7f0d-4269-8ebf-front",
            "name": "Check material.png",
            "active": true,
            "attributes": [],
            "metadata": {
                "width": "342",
                "detail": {
                    "Filter": "Adaptive",
                    "RedTRC": "(Binary data 16 bytes, use -b option to extract)",
                    "BlueTRC": "(Binary data 16 bytes, use -b option to extract)",
                    "BitDepth": 8,
                    "CMMFlags": "Not Embedded, Independent",
                    "FileSize": "201 kB",
                    "FileType": "PNG",
                    "GreenTRC": "(Binary data 16 bytes, use -b option to extract)",
                    "MIMEType": "image/png",
                    "ColorType": "RGB with Alpha",
                    "ImageSize": "342x310",
                    "Interlace": "Noninterlaced",
                    "ProfileID": "e3bfc2b8128a86339438348ce80bad68",
                    "ImageWidth": 342,
                    "Megapixels": 0.106,
                    "XMPToolkit": "XMP Core 5.4.0",
                    "Compression": "Deflate/Inflate",
                    "DeviceModel": "",
                    "ImageHeight": 310,
                    "ProfileName": "ICC Profile",
                    "UserComment": "Screenshot",
                    "ProfileClass": "Display Device Profile",
                    "ExifByteOrder": "Big-endian (Motorola, MM)",
                    "ColorSpaceData": "RGB ",
                    "ExifImageWidth": 342,
                    "FileAccessDate": "2021:09:06 14:17:27+00:00",
                    "FileModifyDate": "2021:09:06 14:17:27+00:00",
                    "ProfileCMMType": "Apple Computer Inc.",
                    "ProfileCreator": "Apple Computer Inc.",
                    "ProfileVersion": "4.0.0",
                    "ExifImageHeight": 310,
                    "FilePermissions": "rw-------",
                    "MediaWhitePoint": "0.95251 1 1.08606",
                    "PrimaryPlatform": "Apple Computer Inc.",
                    "ProfileDateTime": "2021:09:06 14:05:37",
                    "RedMatrixColumn": "0.407 0.20998 0.0034",
                    "RenderingIntent": "Perceptual",
                    "BlueMatrixColumn": "0.15839 0.06598 0.76381",
                    "DeviceAttributes": "Reflective, Glossy, Positive, Color",
                    "ProfileCopyright": "Copyright Apple Inc., 2021",
                    "FileTypeExtension": "png",
                    "GreenMatrixColumn": "0.39882 0.72403 0.05769",
                    "DeviceManufacturer": "Apple Computer Inc.",
                    "ProfileDescription": "Q24i-1L",
                    "ChromaticAdaptation": "1.04576 0.02182 -0.04945 0.02797 0.99156 -0.01674 -0.00919 0.01505 0.75375",
                    "FileInodeChangeDate": "2021:09:06 14:17:27+00:00",
                    "ProfileFileSignature": "acsp",
                    "ProfileConnectionSpace": "XYZ ",
                    "ConnectionSpaceIlluminant": "0.9642 1 0.82491"
                },
                "height": "310",
                "file_name": "Check material.png",
                "mime_type": "image/png",
                "color_space": "sRGB",
                "orientation": "landscape"
            },
            "url": "https://cdn.quable.com/education-developers/ed6b6a6c-7f0d-4269-8ebf-front/original/Check material.png",
            "originalFilename": "Check material.png",
            "thumbnailUrl": "https://cdn.quable.com/education-developers/ed6b6a6c-7f0d-4269-8ebf-front/thumbnail/check-material-png.jpg",
            "previewUrl": "https://cdn.quable.com/education-developers/ed6b6a6c-7f0d-4269-8ebf-front/preview/check-material-png.jpg",
            "classifications": [
                {
                    "@type": "Classification",
                    "@id": "/api/classifications/dam_sort",
                    "catalogId": null,
                    "id": "dam_sort",
                    "legacyId": 3
                }
            ],
            "documentLinks": [
                {
                    "@type": "Link",
                    "@id": "/api/links/f3acee31-64ab-435c-a7cc-67f102eee4b2",
                    "linkType": {
                        "@type": "LinkType",
                        "@id": "/api/link-types/article_images_media",
                        "id": "article_images_media"
                    },
                    "origin": {
                        "@type": "Document",
                        "@id": "/api/documents/material_check_wool",
                        "id": "material_check_wool"
                    },
                    "target": {
                        "@type": "Asset",
                        "@id": "/api/assets/ed6b6a6c-7f0d-4269-8ebf-front",
                        "id": "ed6b6a6c-7f0d-4269-8ebf-front"
                    },
                    "sequence": 1,
                    "id": "f3acee31-64ab-435c-a7cc-67f102eee4b2",
                    "legacyId": 235
                }
            ],
            "variantLinks": [],
            "dateCreated": "2021-09-06T14:17:27+00:00",
            "dateModified": "2023-10-19T14:40:52+00:00",
            "thumbnails": {
                "preview": "https://cdn.quable.com/education-developers/ed6b6a6c-7f0d-4269-8ebf-front/preview/check-material-png.jpg",
                "thumbnail": "https://cdn.quable.com/education-developers/ed6b6a6c-7f0d-4269-8ebf-front/thumbnail/check-material-png.jpg",
                "1920x": "https://cdn.quable.com/education-developers/ed6b6a6c-7f0d-4269-8ebf-front/1920x/check-material-png.jpg"
            },
            "id": "ed6b6a6c-7f0d-4269-8ebf-front",
            "legacyId": 139
        }
    ],
    "hydra:totalItems": 2,
    "hydra:view": {
        "@id": "/api/assets?id%5B%5D=cb9cb871-5974-4fb5-a580-front&id%5B%5D=ed6b6a6c-7f0d-4269-8ebf-front",
        "@type": "hydra:PartialCollectionView"
    },
    "hydra:search": {
        "@type": "hydra:IriTemplate",
        "hydra:template": "/api/assets{?id,id[],search,documentLinks.link_type_id_example.origin.id,documentLinks.link_type_id_example.origin.id[],attributes.attribute_example_id,attributes.attribute_example_id[],attributes.attribute_example_id[equals],attributes.attribute_example_id[contains],catalogs.id,catalogs.id[],skipVariantLinks,classifications.id,classifications.id[],order[id],order[name],order[dateCreated],order[dateModified],dateCreated[before],dateCreated[strictly_before],dateCreated[after],dateCreated[strictly_after],dateModified[before],dateModified[strictly_before],dateModified[after],dateModified[strictly_after],name,name[]}",
        "hydra:variableRepresentation": "BasicRepresentation",
        "hydra:mapping": [
            {
                "@type": "IriTemplateMapping",
                "variable": "id",
                "property": "id",
                "required": false
            },
            {
                "@type": "IriTemplateMapping",
                "variable": "id[]",
                "property": "id",
                "required": false
            },
            {
                "@type": "IriTemplateMapping",
                "variable": "search",
                "property": "search",
                "required": false
            },
            {
                "@type": "IriTemplateMapping",
                "variable": "documentLinks.link_type_id_example.origin.id",
                "property": "documentLinks.origin.id",
                "required": false
            },
            {
                "@type": "IriTemplateMapping",
                "variable": "documentLinks.link_type_id_example.origin.id[]",
                "property": "documentLinks.origin.id",
                "required": false
            },
            {
                "@type": "IriTemplateMapping",
                "variable": "attributes.attribute_example_id",
                "property": "attributes.attribute_example_id",
                "required": false
            },
            {
                "@type": "IriTemplateMapping",
                "variable": "attributes.attribute_example_id[]",
                "property": "attributes.attribute_example_id",
                "required": false
            },
            {
                "@type": "IriTemplateMapping",
                "variable": "attributes.attribute_example_id[equals]",
                "property": "attributes.attribute_example_id",
                "required": false
            },
            {
                "@type": "IriTemplateMapping",
                "variable": "attributes.attribute_example_id[contains]",
                "property": "attributes.attribute_example_id",
                "required": false
            },
            {
                "@type": "IriTemplateMapping",
                "variable": "catalogs.id",
                "property": "catalogs.id",
                "required": false
            },
            {
                "@type": "IriTemplateMapping",
                "variable": "catalogs.id[]",
                "property": "catalogs.id",
                "required": false
            },
            {
                "@type": "IriTemplateMapping",
                "variable": "skipVariantLinks",
                "property": "variantLinks",
                "required": false
            },
            {
                "@type": "IriTemplateMapping",
                "variable": "classifications.id",
                "property": "classifications.id",
                "required": false
            },
            {
                "@type": "IriTemplateMapping",
                "variable": "classifications.id[]",
                "property": "classifications.id",
                "required": false
            },
            {
                "@type": "IriTemplateMapping",
                "variable": "order[id]",
                "property": "id",
                "required": false
            },
            {
                "@type": "IriTemplateMapping",
                "variable": "order[name]",
                "property": "name",
                "required": false
            },
            {
                "@type": "IriTemplateMapping",
                "variable": "order[dateCreated]",
                "property": "dateCreated",
                "required": false
            },
            {
                "@type": "IriTemplateMapping",
                "variable": "order[dateModified]",
                "property": "dateModified",
                "required": false
            },
            {
                "@type": "IriTemplateMapping",
                "variable": "dateCreated[before]",
                "property": "dateCreated",
                "required": false
            },
            {
                "@type": "IriTemplateMapping",
                "variable": "dateCreated[strictly_before]",
                "property": "dateCreated",
                "required": false
            },
            {
                "@type": "IriTemplateMapping",
                "variable": "dateCreated[after]",
                "property": "dateCreated",
                "required": false
            },
            {
                "@type": "IriTemplateMapping",
                "variable": "dateCreated[strictly_after]",
                "property": "dateCreated",
                "required": false
            },
            {
                "@type": "IriTemplateMapping",
                "variable": "dateModified[before]",
                "property": "dateModified",
                "required": false
            },
            {
                "@type": "IriTemplateMapping",
                "variable": "dateModified[strictly_before]",
                "property": "dateModified",
                "required": false
            },
            {
                "@type": "IriTemplateMapping",
                "variable": "dateModified[after]",
                "property": "dateModified",
                "required": false
            },
            {
                "@type": "IriTemplateMapping",
                "variable": "dateModified[strictly_after]",
                "property": "dateModified",
                "required": false
            },
            {
                "@type": "IriTemplateMapping",
                "variable": "name",
                "property": "name",
                "required": false
            },
            {
                "@type": "IriTemplateMapping",
                "variable": "name[]",
                "property": "name",
                "required": false
            }
        ]
    }
}

# Step 4: Export variants linked to the document

For variants, you also have two methods available.
In each returned hydra:member element (each document), the variants collection provides the set of variants linked to this document.
The variant identifier is indicated in variant.id.
variant.@id is indicating the API URL of this variant and is completely valid.

You can then decide to:

  • retrieve variant one by one using its ID
  • retrieve several variants at once

# Retrieve a single variant

curl
curl --location 'https://education-developers.quable.com/api/variants/coatb40' \
--header 'Authorization: Bearer {{yourbearerID}}'

And the reponse:

{
    "@context": {
        "@vocab": "https://education-developers.quable.com/api/docs.jsonld#",
        "hydra": "http://www.w3.org/ns/hydra/core#",
        "name": "VariantOutput/name",
        "document": "VariantOutput/document",
        "isActive": "VariantOutput/isActive",
        "attributes": "VariantOutput/attributes",
        "sequence": "VariantOutput/sequence",
        "assetLinks": "VariantOutput/assetLinks",
        "dateCreated": "VariantOutput/dateCreated",
        "classifications": "VariantOutput/classifications",
        "dateModified": "VariantOutput/dateModified",
        "legacyId": "VariantOutput/legacyId",
        "active": "VariantOutput/active"
    },
    "@type": "Variant",
    "@id": "/api/variants/Coatb40",
    "name": "Beige coat 40",
    "document": {
        "@context": {
            "@vocab": "https://education-developers.quable.com/api/docs.jsonld#",
            "hydra": "http://www.w3.org/ns/hydra/core#"
        },
        "@type": "Document",
        "@id": "/api/documents/color_reference_lb_coat",
        "id": "color_reference_lb_coat"
    },
    "active": true,
    "attributes": {
        "quable_sku_name": {
            "en_GB": "Beige coat 40",
            "en_US": null,
            "fr_FR": null
        },
        "sku_ean": 8643267859435,
        "sku_size": [
            {
                "id": "sku_size_40",
                "labels": {
                    "en_GB": "40",
                    "en_US": "40",
                    "fr_FR": "40"
                }
            }
        ]
    },
    "sequence": 2,
    "assetLinks": [],
    "dateCreated": "2021-09-23T09:15:09+00:00",
    "dateModified": "2021-09-23T09:15:09+00:00",
    "id": "Coatb40",
    "legacyId": 34
}

# Retrieve multiple variants

The variant IDs are added in the path of the request like so:

curl
curl --location --globoff 'https://education-developers.quable.com/api/variants?id[]=coatb42&id[]=coatb40' \
--header 'Authorization: Bearer {{yourbearerID}}'
{
    "@context": "/api/contexts/Variant",
    "@id": "/api/variants",
    "@type": "hydra:Collection",
    "hydra:member": [],
    "hydra:totalItems": 0,
    "hydra:view": {
        "@id": "/api/variants?id%5B%5D=coatb42&id%5B%5D=coatb40",
        "@type": "hydra:PartialCollectionView"
    },
    "hydra:search": {
        "@type": "hydra:IriTemplate",
        "hydra:template": "/api/variants{?order[id],order[name],order[dateModified],order[sequence],attributes.attribute_example_id,attributes.attribute_example_id[],attributes.attribute_example_id[equals],attributes.attribute_example_id[contains],dateModified[before],dateModified[strictly_before],dateModified[after],dateModified[strictly_after],name,name[],classifications.id,classifications.id[],active,active[],id,id[],document.id,document.id[],search}",
        "hydra:variableRepresentation": "BasicRepresentation",
        "hydra:mapping": [
            {
                "@type": "IriTemplateMapping",
                "variable": "order[id]",
                "property": "id",
                "required": false
            },
            {
                "@type": "IriTemplateMapping",
                "variable": "order[name]",
                "property": "name",
                "required": false
            },
            {
                "@type": "IriTemplateMapping",
                "variable": "order[dateModified]",
                "property": "dateModified",
                "required": false
            },
            {
                "@type": "IriTemplateMapping",
                "variable": "order[sequence]",
                "property": "sequence",
                "required": false
            },
            {
                "@type": "IriTemplateMapping",
                "variable": "attributes.attribute_example_id",
                "property": "attributes.attribute_example_id",
                "required": false
            },
            {
                "@type": "IriTemplateMapping",
                "variable": "attributes.attribute_example_id[]",
                "property": "attributes.attribute_example_id",
                "required": false
            },
            {
                "@type": "IriTemplateMapping",
                "variable": "attributes.attribute_example_id[equals]",
                "property": "attributes.attribute_example_id",
                "required": false
            },
            {
                "@type": "IriTemplateMapping",
                "variable": "attributes.attribute_example_id[contains]",
                "property": "attributes.attribute_example_id",
                "required": false
            },
            {
                "@type": "IriTemplateMapping",
                "variable": "dateModified[before]",
                "property": "dateModified",
                "required": false
            },
            {
                "@type": "IriTemplateMapping",
                "variable": "dateModified[strictly_before]",
                "property": "dateModified",
                "required": false
            },
            {
                "@type": "IriTemplateMapping",
                "variable": "dateModified[after]",
                "property": "dateModified",
                "required": false
            },
            {
                "@type": "IriTemplateMapping",
                "variable": "dateModified[strictly_after]",
                "property": "dateModified",
                "required": false
            },
            {
                "@type": "IriTemplateMapping",
                "variable": "name",
                "property": "name",
                "required": false
            },
            {
                "@type": "IriTemplateMapping",
                "variable": "name[]",
                "property": "name",
                "required": false
            },
            {
                "@type": "IriTemplateMapping",
                "variable": "classifications.id",
                "property": "classifications.id",
                "required": false
            },
            {
                "@type": "IriTemplateMapping",
                "variable": "classifications.id[]",
                "property": "classifications.id",
                "required": false
            },
            {
                "@type": "IriTemplateMapping",
                "variable": "active",
                "property": "active",
                "required": false
            },
            {
                "@type": "IriTemplateMapping",
                "variable": "active[]",
                "property": "active",
                "required": false
            },
            {
                "@type": "IriTemplateMapping",
                "variable": "id",
                "property": "id",
                "required": false
            },
            {
                "@type": "IriTemplateMapping",
                "variable": "id[]",
                "property": "id",
                "required": false
            },
            {
                "@type": "IriTemplateMapping",
                "variable": "document.id",
                "property": "document.id",
                "required": false
            },
            {
                "@type": "IriTemplateMapping",
                "variable": "document.id[]",
                "property": "document.id",
                "required": false
            },
            {
                "@type": "IriTemplateMapping",
                "variable": "search",
                "property": "search",
                "required": false
            }
        ]
    }
}

# Export overview

This process enabled you to retrieve:

  • Channel classifications with attribute values in all locales
  • Documents associated with the channel with:
    • classification assignments
    • attribute values
    • associated media
    • associated variants
  • Media with thumbnail URLs
  • Variants with attribute values

Of course, depending on requirements, this scenario could be enhanced with other elements, such as the retrieval of attribute values, asset metadata, X-Sell, Up-Sell or related documents.