mert_bakir
05/24/2023, 12:22 PM{level1: {level2: {location: [latitude, longitude]}, ...},. ...}
I want to get latitude and longitude as separate columns. Tried flattening_enabled
but then it returns location and an array. Is it possible to map the format I want somehow or should I just extract and load as jsonb then do the processing with dbt?alexander_butler
05/24/2023, 5:04 PMmert_bakir
05/24/2023, 5:09 PMlatitude: level1['level2']['location'][0]
alexander_butler
05/24/2023, 5:11 PM