20 lines
730 B
SQL
20 lines
730 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('teams_logo') }}
|
|
select
|
|
_airbyte_logo_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('teams_logo') }} as table_alias
|
|
-- dimensions at teams/logo/dimensions
|
|
where 1 = 1
|
|
and dimensions is not null
|
|
|