---
title: "Creating Flow Structures"
slug: "creating-flow-structures"
description: "A simple flow structure is a creates an entity that is not database-stored, intended for use in a flow only to temporarily define a piece of data. It is simply a data structure that is not stored. Its limitation is that it can't perform actions on itself or others. It relies on other components to manipulate it, and other entities to contain it. All you can do with it is create it and use it in the context of a flow. It will not persist beyond the execution of the flow in which it is used."
tags: ["Flow Structure", "Temporary Data"]
updated: 2025-06-16T16:16:22Z
published: 2025-06-16T16:16:22Z
---

> ## Documentation Index
> Fetch the complete documentation index at: https://documentation.decisions.com/llms.txt
> Use this file to discover all available pages before exploring further.

# Creating Flow Structures

## Overview

| Data Structure Quick Summary |
| --- |
| Complexity? | Performance Impact? | Saves to Database? | Configuration Folder? | Entity Framework? | Folder Behavior? | Process Tracking? |
| Low | Low | No | No | No | No | No |

**Flow Structures** are used to organize and store data only in memory. They are not saved to the database. Flow Structures can NOT persist beyond the execution of the Flow in which it is used.

---

## Example

1. In a Designer Project, click CREATE DATATYPES/INTEGRATION and select **Flow Structure**.

![](https://cdn.document360.io/6ef8bcc1-6489-4486-9ad1-83acff7e5df0/Images/Documentation/2024-07-10_11h31_26.png)
2. In the Flow Structure window, enter a name in the **Structure Type Name** field to define the Flow Structure. Define data members and the types for each. Click SAVE.

![](https://cdn.document360.io/6ef8bcc1-6489-4486-9ad1-83acff7e5df0/Images/Documentation/2024-07-10_11h34_32.png)
3. Create a [new Flow](/v9/docs/create-flows). Attach a **Create Data** step to the **Start** and **End**steps.
4. On the **Properties**panel, click SHOW EDITOR. Define a variable name and select the Flow Structure as the TYPE.

![](https://cdn.document360.io/6ef8bcc1-6489-4486-9ad1-83acff7e5df0/Images/Documentation/2025-06-16_12h14_53.png)

---

## Flow Structure Settings

| Setting Name | Description |
| --- | --- |
| Hide In Search | Hides the data type from appearing when being searched |
| Type Name Space | Creates the unique identifier for the Entity (namespace.typename) to generate the SQL table name for the Entity (namespace_typename) |
| Category Order | Allows data field categories to be organized by the Designer |
| Can Be Base Type | Allows the created type to be used as a super-class for sub-classes |
| Include Type Name In Description | This enables or disables the visibility of the Type namespace |

---

For further information on Data Structures, visit the [Decisions Forum](https://community.decisions.com/categories/Datastructures).
