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

# Create DataSet

Creates a new DataSet in your Domo instance. Once the DataSet has been created, data can then be imported into the DataSet.

## Parameters

<div className="integrations-table">
  | Parameter   | Description                                                                                                                                                                                                                                                                                                                                                                                                 |
  | ----------- | ----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- |
  | Columns     | Array of columns in the DataSet.<br />A column consists of a column name and type.<br />Valid types are `STRING`, `DECIMAL`, `LONG`, `DOUBLE`, `DATE`, and `DATETIME`.<br /><br />For example:<br /><pre><code>\[<br />    \{<br />      "type": "STRING",<br />      "name": "Friend"<br />    },<br />    \{<br />      "type": "STRING",<br />      "name": "Attending"<br />    }<br />  ]</code></pre> |
  | Description | Description of DataSet to create.                                                                                                                                                                                                                                                                                                                                                                           |
  | Name        | Name of the DataSet to create.                                                                                                                                                                                                                                                                                                                                                                              |
</div>

## Example Output

```json theme={"dark"}
{
	"id": "4405ff58-1957-45f0-82bd-914d989a3ea3",
	"name": "Leonhard Euler Party",
	"description": "Mathematician Guest List",
	"rows": 0,
	"columns": 0,
	"schema": {
		"columns": [
			{
				"type": "STRING",
				"name": "Friend"
			},
			{
				"type": "STRING",
				"name": "Attending"
			}
		]
	},
	"owner": {
		"id": 27,
		"name": "DomoSupport"
	},
	"createdAt": "2016-06-21T17:20:36Z",
	"updatedAt": "2016-06-21T17:20:36Z"
}
```

## Workflow Library Example

[Create Dataset with Domo and Send Results Via Email](https://library.blinkops.com/workflows/create-dataset-with-domo-and-send-results-via-email)

<div className="iframe-wrapper">
  <div className="iframe-media">
    <img src="https://mintcdn.com/blinkops-2/ojHYuDeYX5FWuN8a/img/Icons/play-box.svg?fit=max&auto=format&n=ojHYuDeYX5FWuN8a&q=85&s=b8af968e71438a9499c3223c9bd29fb2" alt="Workflow Library" width="16" height="16" data-path="img/Icons/play-box.svg" />

    Preview this Workflow on desktop
  </div>

  <iframe className="iframe" src="https://library.blinkops.com/workflows/create-dataset-with-domo-and-send-results-via-email/canvas" />
</div>
