# Description

### Basic description settings

To pull a description from a specific node, simply indicate the node name from which you want Stockeo to extract a description. For example, if the text you want to use is included in the **\<description>** node, enter its name in the **Description** field of your automation as follows:

<figure><img src="/files/72VL9dIVwkh9mBSe1zr6" alt="Stockeo: basic settings for the description field"><figcaption><p>Stockeo: basic settings for the description field</p></figcaption></figure>

The node data may contain HTML and CSS text formatting information. The description will be formatted according to these.

### Create a description by splicing information from several nodes

It may be that the supplier feed contains a description, but you also want to include additional product information from other feed nodes.

```xml
<item>
    <id>40</id>
    <model>PF077</model>
    <name>Leather wallet for man with zip-pocket for coins</name>
    <option>Colour Tan</option>
    <description>
        <p class="p1"><span style="font-size:18px;"><span class="s1">Mens wallet made in genuine calfskin soft leather
        with zip-pocket for coins, 8 credit card holders and 1 document holder.</span></span></p>
        <p class="p1"><span style="font-size:18px;"><span class="s1">Simple lines and functional design,
        a perfect accessory to always have at hand money and documents.</span></span></p>
    </description>
    <attribute_group>
        <group_name>DETAILED FEATURES</group_name>
        <attribute>Length: 11 cm 4.2 in</attribute>
        <attribute>Height: 9 cm 3.5 in</attribute>
        <attribute>Credit card slots: 8</attribute>
        <attribute>Compartments for bills: 2</attribute>
        <attribute>Pocket for coins: 1</attribute>
        <attribute>Transparent window: 3</attribute>
        <attribute>Slot for business cards: 2</attribute>
    </attribute_group>
    <image_link>https://www.florenceleathermarket.com/image/data/prodotti/portafoglio-077/naturale/077CUO51.jpg</image_link>
    <image_galleries>
        <image_link>https://www.florenceleathermarket.com/image/data/prodotti/portafoglio-077/naturale/077CUO31.jpg</image_link>
    </image_galleries>
    <currency>USD</currency>
    <price_retail_gross>47.53</price_retail_gross>
    <quantity>3</quantity>
</item>
```

To include listed information from **attribute\_group** in the product description in your Shopify store you can use the Liquid formula in the **Description** field of the Stockeo automation.

Use the following settings:

{% tabs %}
{% tab title="Stockeo Description field" %}

<figure><img src="/files/MUBZpkQQTIaBNAGtZiRz" alt="Description settings in Stockeo automation for created description automatically"><figcaption><p>Description settings in Stockeo automation for created description automatically</p></figcaption></figure>
{% endtab %}

{% tab title="Copy settings" %}

```liquid
{{ description }}
{{ attribute_group.group_name }} {{"<br>"}}
{{ attribute_group.attribute[1] }} {{"<br>"}}
{{ attribute_group.attribute[2] }} {{"<br>"}}
{{ attribute_group.attribute[3] }} {{"<br>"}}
{{ attribute_group.attribute[4] }} {{"<br>"}}
{{ attribute_group.attribute[5] }} {{"<br>"}}
{{ attribute_group.attribute[6] }}
```

{% endtab %}
{% endtabs %}

To get the result as below:

<figure><img src="/files/ZtEt9UhrLIehm2ayst1o" alt="Automatically created description for a product in the Shopify store"><figcaption><p>Automatically created description for a product in the Shopify store</p></figcaption></figure>

{% hint style="info" %}
The example above illustrates the creation of automatic product descriptions in Shopify using XML as an example. Similarly, this works when the feed is a CSV or JSON file. In that case, use the **column**/**field** name instead of the **node** name between the curly brackets in the Liquid formula.
{% endhint %}

### Translations

You can import product descriptions in different languages. Click on the gear icon to specify the desired language.

<figure><img src="/files/4Voo7cqAekzTXYLnkrp2" alt=""><figcaption></figcaption></figure>


---

# Agent Instructions: Querying This Documentation

If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter:

```
GET https://help.stockeo.solvenium.com/data-mapping/description.md?ask=<question>
```

The question should be specific, self-contained, and written in natural language.
The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
