# Bloqs

Below is an example XML import file of what it might look like to import data into a Bloqs field. The property key names do not have to match the field names, but it helps for clarity. You can also refer to the [Fluid](https://docs.boldminded.com/datagrab/docs/field-types/fluid) example since both fields import complex data in a similar fashion.

```xml
<root>
    <entry>
        <title>Advanced Bloqs Import</title>
        <bloqs>
            <section>
                <section_heading>
                    This is Section 1
                </section_heading>
                <basic_content>
                    <heading>
                        Heading 1
                    </heading>
                    <summary>
                        ABC
                    </summary>
                </basic_content>
                <basic_content>
                    <heading>
                        Heading 2
                    </heading>
                    <summary>
                        XYZ
                    </summary>
                </basic_content>
            </section>
            <section>
                <section_heading>
                    This is Section 2
                </section_heading>
                <basic_content>
                    <heading>
                        Heading 3
                    </heading>
                    <summary>
                        123
                    </summary>
                </basic_content>
                <basic_content>
                    <heading>
                        Heading 4
                    </heading>
                    <summary>
                        456
                    </summary>
                </basic_content>
            </section>
        </bloqs>
    </entry>
</root>
```
