20 lines
738 B
SQL
20 lines
738 B
SQL
{{ config(
|
|
indexes = [{'columns':['_airbyte_emitted_at'],'type':'btree'}],
|
|
schema = "_airbyte_unibag",
|
|
tags = [ "nested-intermediate" ]
|
|
) }}
|
|
-- SQL model to parse JSON blob stored in a single column and extract into separated field columns as described by the JSON Schema
|
|
-- depends_on: {{ ref('users_avatar') }}
|
|
select
|
|
_airbyte_avatar_hashid,
|
|
{{ json_extract('table_alias', 'dimensions', ['md'], ['md']) }} as md,
|
|
{{ json_extract('table_alias', 'dimensions', ['sm'], ['sm']) }} as sm,
|
|
_airbyte_ab_id,
|
|
_airbyte_emitted_at,
|
|
{{ current_timestamp() }} as _airbyte_normalized_at
|
|
from {{ ref('users_avatar') }} as table_alias
|
|
-- dimensions at users/avatar/dimensions
|
|
where 1 = 1
|
|
and dimensions is not null
|
|
|