Structure Element

 

Important

This topic and its sub-topics provides the JSON format that is supported by the older versions of Azure PowerShell. If you are using the July 2015 Release version of Azure PowerShell or later, see Structure Element for the latest JSON format. You can convert the JSON from old format to new format by using the tool: JSON Upgrade Tool 

The Structure section in a JSON file that defines an Azure Data Factory table contains a collection of columns for the table. Each column contains the following properties:

Property

Description

name

Name of the column.

type

Data type of the column.

Note

Supported data types: String, Int, Decimal, Guid, Boolean and Date.

In the following example, the table has three columns slicetimestamp, projectname, and pageviews.

structure:  
[ 
    { name: "slicetimestamp", type: "String"},
    { name: "projectname", type: "String"},
    { name: "pageviews", type: "Decimal"}
]

See Also

Datasets
Location Element
Availability Element
Policy Element
External Tables
Creating Tables with Different Schedules