<!-- Do not edit this file. It is automatically generated by API Documenter. -->

[Home](./index.md) &gt; [@datashaper/schema](./schema.md) &gt; [ParseType](./schema.parsetype.md)

## ParseType enum

This is a subset of data types available for parsing operations.

<b>Signature:</b>

```typescript
export declare enum ParseType 
```

## Enumeration Members

|  Member | Value | Description |
|  --- | --- | --- |
|  Array | <code>&quot;array&quot;</code> | Type is an array of values. |
|  Boolean | <code>&quot;boolean&quot;</code> | Type is a binary boolean (true/false) |
|  Date | <code>&quot;date&quot;</code> | Type is a date |
|  Decimal | <code>&quot;float&quot;</code> | Type is a decimal (floating point number). Note that in JavaScript integers and decimals are both represented as "number", but the distinction is helpful for formatting/display and understanding user intent. |
|  Integer | <code>&quot;int&quot;</code> | Type is an integer (whole number) |
|  String | <code>&quot;string&quot;</code> | Type is a string of text. |

