Output json "Array of Objects" to sink inside an Data Flow

Viewed 224

I have a source file in a Storage account that is json "Document per line". I transform it through a Data Flow and would like the outpout to a json file to be an array of objects(e.g. actually valid json format). Source file:

{..}
{..}
{..}

Expected output (array of objects):

[
{},
{},
{}
]

The sink in a Data Flow doesn't have any options to specify the desired output. Do anyone have any idea in how to achieve this?

My current effort consists of selecting "Output to single file" in the Sink settings. But there are no options for selecting json format. sink settings

0 Answers
Related