# Value Types

In Page Flow/Cloud Flow the Output blocks send out values with a certain type and the Value Parameters within blocks accept data again of certain types. The following table describes the available types:

<table><thead><tr><th width="126">Type</th><th>Description</th></tr></thead><tbody><tr><td>text</td><td>Any textual data including letters, numbers, special characters, etc.</td></tr><tr><td>numeric</td><td>Numeric data including <a href="https://en.wikipedia.org/wiki/Integer">integers</a> and <a href="https://en.wikipedia.org/wiki/Real_number">real numbers</a>.</td></tr><tr><td>object</td><td>An entity containing named properties and their values.</td></tr><tr><td>list</td><td>Collection of values</td></tr><tr><td>boolean</td><td>A binary value e.g. <em>true</em> or <em>false</em> / ON or OFF/ yes or no / etc</td></tr><tr><td>element</td><td>An entity that represents an element on a page or form</td></tr><tr><td>any</td><td>A generic value that can be of any of the above types</td></tr></tbody></table>
