Create maps and lists in CSV

Hi All,

I’m expecting I’m missing something obvious, but is it possible to create nested CSV structures using Mockaroo? Something like:

Serenity|03-K64-Firefly|{'1st Officer': 'Zoey Washburne', 'captain': 'Malcolm Reynolds', 'engineer': 'Kaylee Frye', 'pilot': 'Hoban Washburne'}|G-82659|['Simon Tam', 'River Tam', 'Derial Book', 'Inara Serra']

For the following C* schema:

CREATE TABLE shipregistry ( name text, class text, hullnumber text, crew map<text,text>, passengers list<text>, PRIMARY KEY ((name)) );

Thanks!

Ah, okay, found the JSON tutorial for this. That’ll get me by, but still wondering if there’s a way to output CSV. Thanks!